Browse Source

policy_cache.hpp

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

4
src/policy_cache.hpp

@ -44,7 +44,9 @@ public:
std::string* std::string*
find(char const *key_) find(char const *key_)
{ {
auto i = _cache.find(key_);
Map::const_iterator i;
i == _cache.find(key_);
} }
void void

Loading…
Cancel
Save