From 2664229017735a8aa4362e8c56ead7270ed3783b Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Thu, 29 Nov 2012 09:00:05 -0800 Subject: [PATCH] Fix a compiler warning. --- src/cpp/ripple/HashedObject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/HashedObject.cpp b/src/cpp/ripple/HashedObject.cpp index d430272a37..f59a186fe1 100644 --- a/src/cpp/ripple/HashedObject.cpp +++ b/src/cpp/ripple/HashedObject.cpp @@ -12,7 +12,7 @@ SETUP_LOG(); DECLARE_INSTANCE(HashedObject); HashedObjectStore::HashedObjectStore(int cacheSize, int cacheAge) : - mCache("HashedObjectStore", cacheSize, cacheAge), mWritePending(false), mWriteGeneration(0) + mCache("HashedObjectStore", cacheSize, cacheAge), mWriteGeneration(0), mWritePending(false) { mWriteSet.reserve(128); }