summaryrefslogtreecommitdiff
blob: 1f5f63a252f2090cb14eb9776863f7f9a4a8973d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Fix building with gcc 4.5

http://bugs.gentoo.org/show_bug.cgi?id=320107

--- src/scancache.cxx
+++ src/scancache.cxx
@@ -37,7 +37,7 @@
 }
 
 ScanCache::ScanCache(long int elements, long int expire):
-    ExpireLRUCache<ino_t, CachedResult>::ExpireLRUCache<ino_t, CachedResult>(elements, expire) {
+    ExpireLRUCache<ino_t, CachedResult>(elements, expire) {
 }
 
 ScanCache::~ScanCache() {