Browse Source

policy_cache.hpp

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

4
src/policy_cache.hpp

@ -47,6 +47,10 @@ public:
Map::const_iterator i; Map::const_iterator i;
i = _cache.find(key_); i = _cache.find(key_);
if(i == _cache.end())
return NULL;
return &i->second;
} }
void void

Loading…
Cancel
Save