| 54 | } |
| 55 | |
| 56 | Cache::Handle* InsertAndReturnHandle(int key, int value, int charge = 1) { |
| 57 | return cache_->Insert(EncodeKey(key), EncodeValue(value), charge, |
| 58 | &CacheTest::Deleter); |
| 59 | } |
| 60 | |
| 61 | void Erase(int key) { cache_->Erase(EncodeKey(key)); } |
| 62 |
nothing calls this directly
no test coverage detected