Skip to content

Commit

Permalink
Minor perf update
Browse files Browse the repository at this point in the history
  • Loading branch information
elishacloud committed Sep 13, 2024
1 parent 8d65e9c commit 2ce9ce6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AddressLookupTable.h
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ class AddressLookupTableDinput

constexpr UINT CacheIndex = AddressCacheIndex<T>::CacheIndex;
auto it = std::find_if(g_map[CacheIndex].begin(), g_map[CacheIndex].end(),
[=](auto Map) -> bool { return Map.second == Wrapper; });
[=](auto& Map) -> bool { return Map.second == Wrapper; });

if (it != std::end(g_map[CacheIndex]))
{
Expand Down
2 changes: 1 addition & 1 deletion BuildNo.rc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define BUILD_NUMBER 77
#define BUILD_NUMBER 78

0 comments on commit 2ce9ce6

Please sign in to comment.