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/comphelper | |
parent | 1a715d4d67ca398d59a8f7e8b41bdfeeabdd4b74 (diff) |
Get rid of DECLARE_STL_MAP
Change-Id: Ifbda934a89087fcc1c031978d3e5b5783722b328
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/IdPropArrayHelper.hxx | 4 | ||||
-rw-r--r-- | include/comphelper/accessiblewrapper.hxx | 4 | ||||
-rw-r--r-- | include/comphelper/stl_types.hxx | 6 |
3 files changed, 8 insertions, 6 deletions
diff --git a/include/comphelper/IdPropArrayHelper.hxx b/include/comphelper/IdPropArrayHelper.hxx index 251236f57070..fb16be95d66b 100644 --- a/include/comphelper/IdPropArrayHelper.hxx +++ b/include/comphelper/IdPropArrayHelper.hxx @@ -19,6 +19,10 @@ #ifndef INCLUDED_COMPHELPER_IDPROPARRAYHELPER_HXX #define INCLUDED_COMPHELPER_IDPROPARRAYHELPER_HXX +#include <sal/config.h> + +#include <map> + #include <cppuhelper/component.hxx> #include <osl/mutex.hxx> #include <cppuhelper/interfacecontainer.hxx> diff --git a/include/comphelper/accessiblewrapper.hxx b/include/comphelper/accessiblewrapper.hxx index f97dc43051d8..8bcb914bcc29 100644 --- a/include/comphelper/accessiblewrapper.hxx +++ b/include/comphelper/accessiblewrapper.hxx @@ -20,6 +20,10 @@ #ifndef INCLUDED_COMPHELPER_ACCESSIBLEWRAPPER_HXX #define INCLUDED_COMPHELPER_ACCESSIBLEWRAPPER_HXX +#include <sal/config.h> + +#include <map> + #include <comphelper/proxyaggregation.hxx> #include <com/sun/star/accessibility/XAccessible.hpp> #include <com/sun/star/accessibility/XAccessibleContext.hpp> diff --git a/include/comphelper/stl_types.hxx b/include/comphelper/stl_types.hxx index 6ab7f45ba216..08d42429d34a 100644 --- a/include/comphelper/stl_types.hxx +++ b/include/comphelper/stl_types.hxx @@ -21,8 +21,6 @@ #include <sal/config.h> -#include <map> - #include <stack> #include <math.h> @@ -238,10 +236,6 @@ OutputIter intersperse( typedef classname::iterator classname##Iterator; \ typedef classname::const_iterator Const##classname##Iterator \ -#define DECLARE_STL_MAP(keytype, valuetype, comparefct, classname) \ - typedef std::map< keytype, valuetype, comparefct > classname; \ - DECLARE_STL_ITERATORS(classname) \ - #endif // INCLUDED_COMPHELPER_STL_TYPES_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |