From e5ec7440cabae79d502b1d954adfbd8c17e8f996 Mon Sep 17 00:00:00 2001 From: Christos Tsantilas Date: Thu, 16 May 2013 10:06:50 +0300 Subject: [PATCH] "LruMap bug fix and other polishing touches" patch: fix compile error --- src/base/LruMap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/LruMap.h b/src/base/LruMap.h index 506b0e0bf2..39eb44c82d 100644 --- a/src/base/LruMap.h +++ b/src/base/LruMap.h @@ -165,7 +165,7 @@ bool LruMap::del(LruMap::MapIterator const &i) { if (i != storage.end()) { - LruMap::Entry *e = *i->second; + Entry *e = *i->second; index.erase(i->second); storage.erase(i); delete e; -- 2.47.3