| 60 | } |
| 61 | |
| 62 | Cache::Handle* InsertAndReturnHandle(int key, int value, int charge = 1) { |
| 63 | return cache_->Insert(EncodeKey(key), EncodeValue(value), charge, |
| 64 | &CacheTest::Deleter); |
| 65 | } |
| 66 | |
| 67 | void Erase(int key) { |
| 68 | cache_->Erase(EncodeKey(key)); |
nothing calls this directly
no test coverage detected