diff options
Diffstat (limited to 'xmlscript/source')
-rw-r--r-- | xmlscript/source/xml_helper/xml_impctx.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlscript/source/xml_helper/xml_impctx.cxx b/xmlscript/source/xml_helper/xml_impctx.cxx index a51a99a57ed9..31bf7b4f843e 100644 --- a/xmlscript/source/xml_helper/xml_impctx.cxx +++ b/xmlscript/source/xml_helper/xml_impctx.cxx @@ -57,7 +57,7 @@ OUString getImplementationName_DocumentHandlerImpl() return OUString( "com.sun.star.comp.xml.input.SaxDocumentHandler" ); } -typedef std::unordered_map< OUString, sal_Int32, OUStringHash > t_OUString2LongMap; +typedef std::unordered_map< OUString, sal_Int32 > t_OUString2LongMap; struct PrefixEntry { @@ -68,7 +68,7 @@ struct PrefixEntry }; typedef std::unordered_map< - OUString, std::unique_ptr<PrefixEntry>, OUStringHash > t_OUString2PrefixMap; + OUString, std::unique_ptr<PrefixEntry> > t_OUString2PrefixMap; struct ElementEntry { |