0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-03-05 14:06:27 -05:00

Make limited map actually respect max size

This commit is contained in:
Casey Rodarmor 2015-08-17 12:05:47 -04:00
parent 1e92b27540
commit fd2d862fbc

View file

@ -38,7 +38,7 @@ public:
{
std::pair<iterator, bool> ret = map.insert(x);
if (ret.second) {
if (nMaxSize && map.size() == nMaxSize) {
if (nMaxSize && map.size() > nMaxSize) {
map.erase(rmap.begin()->second);
rmap.erase(rmap.begin());
}