aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/cachebase.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2013-03-25 23:31:03 +0000
committerMike Buland <eichlan@xagasoft.com>2013-03-25 23:31:03 +0000
commitcc81b205410c2cf8e20a53eea745d9d8aee57f6c (patch)
treec5f158fc5ce573a8e3ddb2f845dc2514a091a9f7 /src/unstable/cachebase.h
parentea768b490a1881dfa443f16ade34300088bbdf94 (diff)
downloadlibbu++-cc81b205410c2cf8e20a53eea745d9d8aee57f6c.tar.gz
libbu++-cc81b205410c2cf8e20a53eea745d9d8aee57f6c.tar.bz2
libbu++-cc81b205410c2cf8e20a53eea745d9d8aee57f6c.tar.xz
libbu++-cc81b205410c2cf8e20a53eea745d9d8aee57f6c.zip
Corrected a pure virtual call issue while destroying caches.
Diffstat (limited to 'src/unstable/cachebase.h')
-rw-r--r--src/unstable/cachebase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unstable/cachebase.h b/src/unstable/cachebase.h
index 026e69b..270c2df 100644
--- a/src/unstable/cachebase.h
+++ b/src/unstable/cachebase.h
@@ -15,6 +15,8 @@
15#include "bu/mutexlocker.h" 15#include "bu/mutexlocker.h"
16#include "bu/cacheobject.h" 16#include "bu/cacheobject.h"
17 17
18#include "bu/sio.h"
19
18namespace Bu 20namespace Bu
19{ 21{
20 template<typename keytype, typename obtype> class CacheBase; 22 template<typename keytype, typename obtype> class CacheBase;
@@ -320,8 +322,6 @@ namespace Bu
320 322
321 virtual ~CacheBase() 323 virtual ~CacheBase()
322 { 324 {
323 Bu::ReadWriteMutex::WriteLocker wl( mCacheEntry );
324 syncChanges();
325 } 325 }
326 326
327 typedef CacheEntry<keytype, obtype> Entry; 327 typedef CacheEntry<keytype, obtype> Entry;