summaryrefslogtreecommitdiff
path: root/idl/source/cmptools/hash.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'idl/source/cmptools/hash.cxx')
-rw-r--r--idl/source/cmptools/hash.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/idl/source/cmptools/hash.cxx b/idl/source/cmptools/hash.cxx
index d3993881a6ba..4420023bbc32 100644
--- a/idl/source/cmptools/hash.cxx
+++ b/idl/source/cmptools/hash.cxx
@@ -48,6 +48,7 @@ bool SvStringHashTable::Test( const OString& rElement, sal_uInt32 * pInsertPos )
SvStringHashEntry * SvStringHashTable::Get( sal_uInt32 nInsertPos ) const
{
auto it = maInt2EntryMap.find(nInsertPos);
+ assert(it != maInt2EntryMap.end());
return it->second.get();
}