Browse Source

policy_cache.hpp

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

4
src/policy_cache.hpp

@ -45,14 +45,12 @@ public:
PolicyCache(unsigned const max_size_ = 256) PolicyCache(unsigned const max_size_ = 256)
: _max_size(max_size_) : _max_size(max_size_)
{ {
strpool_config_t config = strpool_default_config;
strpool_init(&_strpool,&config);
} }
~PolicyCache() ~PolicyCache()
{ {
strpool_term(&_strpool);
} }
public: public:

Loading…
Cancel
Save