summaryrefslogtreecommitdiffstats
path: root/include/svl/IndexedStyleSheets.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-01 19:58:59 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-02 16:14:36 +0000
commitfd1372ba8b1c3eb3c7fad6d9c623176c8071f31b (patch)
tree448f0d04f780007b3eeeb76b7c4c8c54cbfd6d9b /include/svl/IndexedStyleSheets.hxx
parentiss is unordered_multimap, so can't rely on order (diff)
downloadcore-fd1372ba8b1c3eb3c7fad6d9c623176c8071f31b.tar.gz
core-fd1372ba8b1c3eb3c7fad6d9c623176c8071f31b.zip
boost::unordered_map->std::unordered_map
you can get debug stl this way Change-Id: Ia70a3e7c7c452390e8bee34975d296c9318e4a19
Diffstat (limited to 'include/svl/IndexedStyleSheets.hxx')
-rw-r--r--include/svl/IndexedStyleSheets.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svl/IndexedStyleSheets.hxx b/include/svl/IndexedStyleSheets.hxx
index 8cd8de46b182..7fcbfae59c9a 100644
--- a/include/svl/IndexedStyleSheets.hxx
+++ b/include/svl/IndexedStyleSheets.hxx
@@ -18,7 +18,7 @@
#include <svl/svldllapi.h>
-#include <boost/unordered_map.hpp>
+#include <unordered_map>
#include <vector>
class SfxStyleSheetBase;
@@ -178,7 +178,7 @@ private:
*
* @internal
* Must be an unordered map. A regular map is too slow for some files. */
- typedef boost::unordered_multimap<rtl::OUString, unsigned, rtl::OUStringHash> MapType;
+ typedef std::unordered_multimap<rtl::OUString, unsigned, rtl::OUStringHash> MapType;
/** A map which stores the positions of style sheets by their name */
MapType mPositionsByName;