From 8f5aa1a8103577c6f737e5445e26b778fb676576 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 2 Jan 2013 19:22:34 -0800 Subject: [PATCH] Wrong type. --- src/cpp/ripple/TaggedCache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/TaggedCache.h b/src/cpp/ripple/TaggedCache.h index 1d1607052..5d24ce68e 100644 --- a/src/cpp/ripple/TaggedCache.h +++ b/src/cpp/ripple/TaggedCache.h @@ -154,7 +154,7 @@ template bool TaggedCache::touch } // Is the object in the cache? - map_iterator cit = mCache.find(key); + cache_iterator cit = mCache.find(key); if (cit != mCache.end()) { // in both map and cache cit->second.first = time(NULL);