Skip to content

Commit

Permalink
Revert "Insert to bimap left instead of directly (#734)"
Browse files Browse the repository at this point in the history
This reverts commit 382e675.
  • Loading branch information
devernay committed Dec 26, 2021
1 parent a32374a commit c5696f3
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.left.insert( typename container_type::value_type(k, list) );
_container.insert( typename container_type::value_type(k, list) );
}
}

Expand Down

0 comments on commit c5696f3

Please sign in to comment.