From b4fdd2ed4a0a36e6faf4da0cbd0b8fbdc25dc757 Mon Sep 17 00:00:00 2001 From: Zhu Yuejun Date: Sun, 15 Jan 2017 21:29:07 +0800 Subject: [PATCH] Fix indent --- src/cache.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cache.cc b/src/cache.cc index 3f5592c..8cc83cc 100644 --- a/src/cache.cc +++ b/src/cache.cc @@ -147,8 +147,8 @@ class LRUCache { // Like Cache methods, but with an extra "hash" parameter. Cache::Handle* Insert(const Slice& key, uint32_t hash, - void* value, size_t charge, - void (*deleter)(const Slice& key, void* value)); + void* value, size_t charge, + void (*deleter)(const Slice& key, void* value)); Cache::Handle* Lookup(const Slice& key, uint32_t hash); void Release(Cache::Handle* handle); void Erase(const Slice& key, uint32_t hash);