Browse Source

policy_cache.hpp

getattr-cache
Antonio SJ Musumeci 9 months ago
parent
commit
601b843144
  1. 4
      src/policy_cache.hpp

4
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

Loading…
Cancel
Save