summaryrefslogtreecommitdiff
path: root/include/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-25 11:03:15 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-25 12:03:50 +0200
commit2fffaf6f05d829e345ad8b391646a6e8df9a9a26 (patch)
treeec1b7343262433ee2ea9ab6e5197b6fd2327b685 /include/tools
parentf74da1315a5b2ec232a66944e41ff90231b383be (diff)
loplugin:unusedmethods
Change-Id: Ia874baf21257e5fe41e104211068a2bcc50446eb Reviewed-on: https://gerrit.libreoffice.org/40391 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/tools')
-rw-r--r--include/tools/unqidx.hxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/tools/unqidx.hxx b/include/tools/unqidx.hxx
index 7b059adccbb7..44ba98ae623b 100644
--- a/include/tools/unqidx.hxx
+++ b/include/tools/unqidx.hxx
@@ -45,9 +45,6 @@ public:
void* Get( Index aIndex ) const;
Index GetIndexOf( void const* p ) const;
- Index FirstIndex() const;
- Index LastIndex() const;
- Index NextIndex( Index aCurrIndex ) const;
};
template<typename T>
@@ -61,12 +58,6 @@ public:
Index Insert(T* p) { return UniqueIndexImpl::Insert(p); }
T* Get(Index idx) const { return static_cast<T*>( UniqueIndexImpl::Get(idx) ); }
- T* Remove(Index idx) { return static_cast<T*>( UniqueIndexImpl::Remove(idx) ); }
- Index GetIndexOf(T* p) const { return UniqueIndexImpl::GetIndexOf(p); }
-
- using UniqueIndexImpl::FirstIndex;
- using UniqueIndexImpl::LastIndex;
- using UniqueIndexImpl::NextIndex;
};
#endif