aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/myriadcache.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/myriadcache.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/myriadcache.h')
-rw-r--r--src/unstable/myriadcache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unstable/myriadcache.h b/src/unstable/myriadcache.h
index ce0f2fa..9bc926f 100644
--- a/src/unstable/myriadcache.h
+++ b/src/unstable/myriadcache.h
@@ -50,7 +50,7 @@ namespace Bu
50 50
51 virtual ~MyriadCache() 51 virtual ~MyriadCache()
52 { 52 {
53 _sync(); 53 Bu::CacheBase<keytype,obtype>::sync();
54 } 54 }
55 55
56 using typename Bu::CacheBase<keytype,obtype>::KeyList; 56 using typename Bu::CacheBase<keytype,obtype>::KeyList;