Skip to content

Commit

Permalink
Insert to bimap left instead of directly (#734)
Browse files Browse the repository at this point in the history
  • Loading branch information
YakoYakoYokuYoku authored and devernay committed Dec 25, 2021
1 parent 4c5d962 commit be8292f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Engine/LRUHashTable.h
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ class BoostLRUHashTable
} else {
value_type list;
list.push_back(v);
_container.insert( typename container_type::value_type(k, list) );
_container.left.insert( typename container_type::value_type(k, list) );
}
}

Expand Down

0 comments on commit be8292f

Please sign in to comment.