crosire / blink

A tool which allows you to edit source code of any MSVC C++ project live at runtime
BSD 2-Clause "Simplified" License
1.09k stars 81 forks source link

Speed up source file lookup #37

Closed bburgin closed 2 years ago

bburgin commented 2 years ago

For projects with many source files, the vector of vector search is slow (takes several seconds). This PR adds a hash map to speed up the search.

crosire commented 2 years ago

Awesome, thanks!