summaryrefslogtreecommitdiff
path: root/include/tools/unqidx.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/tools/unqidx.hxx')
-rw-r--r--include/tools/unqidx.hxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/tools/unqidx.hxx b/include/tools/unqidx.hxx
index 190b8e10e212..b6d65b4db3ec 100644
--- a/include/tools/unqidx.hxx
+++ b/include/tools/unqidx.hxx
@@ -33,12 +33,11 @@ private:
std::map<Index, void*> maMap;
const Index nStartIndex;
Index nUniqIndex;
- Index nCount;
public:
UniqueIndexImpl( Index _nStartIndex = 0 )
: maMap(),
- nStartIndex(_nStartIndex), nUniqIndex(_nStartIndex), nCount(0) {}
+ nStartIndex(_nStartIndex), nUniqIndex(_nStartIndex) {}
Index Insert( void* p );
// insert value with key, replacing existing entry if necessary