diff --git a/src/policy_cache.hpp b/src/policy_cache.hpp index d191c946..c8b9a39c 100644 --- a/src/policy_cache.hpp +++ b/src/policy_cache.hpp @@ -42,9 +42,7 @@ public: insert(std::string const &key_, std::string &val_) { - if(_cache.size() >= _max_size) - _cache.erase(_cache.begin()); - return &_cache.insert({key_,val_}).first->second; + return NULL; } const