diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 10:17:37 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 10:37:50 +0100 |
commit | c78f7d85ab72a447cabbeebcc76706b796c7308a (patch) | |
tree | 76bc731ae0268960e2bf95a06476fa516f7b78e1 /include/unotools | |
parent | 1a715d4d67ca398d59a8f7e8b41bdfeeabdd4b74 (diff) |
Get rid of DECLARE_STL_MAP
Change-Id: Ifbda934a89087fcc1c031978d3e5b5783722b328
Diffstat (limited to 'include/unotools')
-rw-r--r-- | include/unotools/idhelper.hxx | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/include/unotools/idhelper.hxx b/include/unotools/idhelper.hxx index e0f8fd3af8fd..80698a6031e2 100644 --- a/include/unotools/idhelper.hxx +++ b/include/unotools/idhelper.hxx @@ -20,10 +20,13 @@ #ifndef INCLUDED_UNOTOOLS_IDHELPER_HXX #define INCLUDED_UNOTOOLS_IDHELPER_HXX +#include <sal/config.h> + +#include <map> + #include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/lang/XTypeProvider.hpp> #include <osl/mutex.hxx> -#include <comphelper/stl_types.hxx> #include <cppuhelper/typeprovider.hxx> #include <tools/debug.hxx> @@ -68,12 +71,8 @@ public: } }; -// declare the map -DECLARE_STL_MAP ( TypeSequence, - ::cppu::OImplementationId, - TypeSequenceLess, - MapType2Id - ); +typedef std::map<TypeSequence, ::cppu::OImplementationId, TypeSequenceLess> +MapType2Id; //......................................................................... } // namespace utl |