From e18122df775c6888b68bbba0593d94f11ee25eb2 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Mon, 10 Jun 2013 22:00:42 -0700 Subject: [PATCH] Get it right. --- src/cpp/ripple/SHAMap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cpp/ripple/SHAMap.h b/src/cpp/ripple/SHAMap.h index bc9bfdc4e..19953edfe 100644 --- a/src/cpp/ripple/SHAMap.h +++ b/src/cpp/ripple/SHAMap.h @@ -480,8 +480,8 @@ public: typedef std::pair< uint256, std::vector > fetchPackEntry_t; std::list getFetchPack(SHAMap* have, bool includeLeaves, int max); - static int getFullBelowCacheSize() { return fullBelowCache.getSize(); } - static void sweep() { fullBelowCache.sweep(); } + static int getFullBelowSize() { return fullBelowCache.getSize(); } + static void sweep() { fullBelowCache.sweep(); } }; #endif