diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2016-10-29 12:43:54 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2016-10-31 03:48:49 +0000 |
commit | b589c4cd8765b0611afe435354364df891d78852 (patch) | |
tree | 4dbfacf74480e2154a2e38c3fd41fe9d34f08fc3 /include/svx | |
parent | 3d83c42008ab51202c0577f493e8ed3fde0310b7 (diff) |
Omit comparator which is the same as default std::less<key_type>
Change-Id: I72a0b618577caececaaf3eb4df53d4cb192251da
Reviewed-on: https://gerrit.libreoffice.org/30369
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/xmleohlp.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/svx/xmleohlp.hxx b/include/svx/xmleohlp.hxx index 24f9d30b0662..1f5d47e66da1 100644 --- a/include/svx/xmleohlp.hxx +++ b/include/svx/xmleohlp.hxx @@ -37,15 +37,13 @@ enum class SvXMLEmbeddedObjectHelperMode namespace comphelper { class IEmbeddedHelper; } class SvGlobalName; -struct OUStringLess; class OutputStorageWrapper_Impl; class SVX_DLLPUBLIC SvXMLEmbeddedObjectHelper : public ::cppu::WeakComponentImplHelper2< css::document::XEmbeddedObjectResolver, css::container::XNameAccess > { - typedef ::std::map< OUString, OutputStorageWrapper_Impl*, - OUStringLess > SvXMLEmbeddedObjectHelper_Impl; + typedef ::std::map< OUString, OutputStorageWrapper_Impl* > SvXMLEmbeddedObjectHelper_Impl; private: ::osl::Mutex maMutex; |