| 65 | |
| 66 | template <class FileType> |
| 67 | FileType* CacheValueToFileType(Slice s) { |
| 68 | return reinterpret_cast<FileType*>(*reinterpret_cast<void**>( |
| 69 | s.mutable_data())); |
| 70 | } |
| 71 | |
| 72 | class EvictionCallback : public Cache::EvictionCallback { |
| 73 | public: |
nothing calls this directly
no test coverage detected