summaryrefslogtreecommitdiff
path: root/python/cache.cc
diff options
context:
space:
mode:
Diffstat (limited to 'python/cache.cc')
-rw-r--r--python/cache.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/cache.cc b/python/cache.cc
index e527faba..01330adb 100644
--- a/python/cache.cc
+++ b/python/cache.cc
@@ -46,7 +46,7 @@ template<typename T> struct IterListStruct
unsigned long LastIndex;
IterListStruct(T const &I) : Iter(I), LastIndex(0) {}
- IterListStruct() {};
+ IterListStruct() : LastIndex(0) {};
bool move(unsigned long Index) {
if (Index < 0 || (unsigned)Index >= Count())