Fix a compiler warning.

This commit is contained in:
JoelKatz
2012-11-29 09:00:05 -08:00
parent 5cf15b3f4e
commit 2664229017

View File

@@ -12,7 +12,7 @@ SETUP_LOG();
DECLARE_INSTANCE(HashedObject); DECLARE_INSTANCE(HashedObject);
HashedObjectStore::HashedObjectStore(int cacheSize, int cacheAge) : 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); mWriteSet.reserve(128);
} }