summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/source/xml_helper/xml_impctx.cxx4
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
{