From dbcf60b2c314521ab809d50d228c0c98ce8f6915 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 5 Aug 2013 22:37:39 +0200 Subject: coverity fixes --- python/cache.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/cache.cc') 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 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()) -- cgit v1.2.3