diff options
author | Mike Buland <eichlan@xagasoft.com> | 2013-03-18 15:07:46 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2013-03-18 15:07:46 +0000 |
commit | 1db266b863a805d49928d831a690c39df640dc28 (patch) | |
tree | d89d38ec82816517805f183ce3fc78a97d13fa8b /src/unstable | |
parent | fb5176bbd5355b02b7d0e65da3ef3f0105824cd0 (diff) | |
download | libbu++-1db266b863a805d49928d831a690c39df640dc28.tar.gz libbu++-1db266b863a805d49928d831a690c39df640dc28.tar.bz2 libbu++-1db266b863a805d49928d831a690c39df640dc28.tar.xz libbu++-1db266b863a805d49928d831a690c39df640dc28.zip |
Corrected compliation issue in the new cache with older GCC versions.
Diffstat (limited to 'src/unstable')
-rw-r--r-- | src/unstable/myriadcache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unstable/myriadcache.h b/src/unstable/myriadcache.h index f8c0e00..7ff2183 100644 --- a/src/unstable/myriadcache.h +++ b/src/unstable/myriadcache.h | |||
@@ -55,7 +55,7 @@ namespace Bu | |||
55 | 55 | ||
56 | using typename Bu::CacheBase<keytype,obtype>::KeyList; | 56 | using typename Bu::CacheBase<keytype,obtype>::KeyList; |
57 | 57 | ||
58 | virtual KeyList getKeys() const | 58 | virtual typename Bu::CacheBase<keytype,obtype>::KeyList getKeys() const |
59 | { | 59 | { |
60 | Bu::ReadWriteMutex::ReadLocker rl( rwStore ); | 60 | Bu::ReadWriteMutex::ReadLocker rl( rwStore ); |
61 | return hIndex.getKeys(); | 61 | return hIndex.getKeys(); |