summaryrefslogtreecommitdiff
path: root/rsc/source/tools/rschash.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'rsc/source/tools/rschash.cxx')
-rw-r--r--rsc/source/tools/rschash.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/rsc/source/tools/rschash.cxx b/rsc/source/tools/rschash.cxx
index 005c058916c0..65388ec91ca2 100644
--- a/rsc/source/tools/rschash.cxx
+++ b/rsc/source/tools/rschash.cxx
@@ -34,7 +34,7 @@ AtomContainer::~AtomContainer()
Atom AtomContainer::getID( const OString& rStr, bool bOnlyIfExists )
{
OString aKey = rStr.toAsciiLowerCase();
- boost::unordered_map< OString, Atom, OStringHash >::const_iterator it =
+ std::unordered_map< OString, Atom, OStringHash >::const_iterator it =
m_aStringToID.find( aKey );
if( it != m_aStringToID.end() )
return it->second;
@@ -51,7 +51,7 @@ Atom AtomContainer::getID( const OString& rStr, bool bOnlyIfExists )
const OString& AtomContainer::getString( Atom nAtom )
{
- boost::unordered_map< Atom, OString >::const_iterator it =
+ std::unordered_map< Atom, OString >::const_iterator it =
m_aIDToString.find( nAtom );
return (it != m_aIDToString.end()) ? it->second : m_aIDToString[0];
}