summaryrefslogtreecommitdiffstats
path: root/sc/inc/autonamecache.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/inc/autonamecache.hxx')
-rw-r--r--sc/inc/autonamecache.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/autonamecache.hxx b/sc/inc/autonamecache.hxx
index f655076a1ab6..d0bbc05e5ead 100644
--- a/sc/inc/autonamecache.hxx
+++ b/sc/inc/autonamecache.hxx
@@ -20,13 +20,13 @@
#ifndef INCLUDED_SC_INC_AUTONAMECACHE_HXX
#define INCLUDED_SC_INC_AUTONAMECACHE_HXX
+#include <unordered_map>
#include <vector>
-#include <boost/unordered_map.hpp>
#include "address.hxx"
#include "global.hxx"
-typedef ::std::vector< ScAddress > ScAutoNameAddresses;
-typedef ::boost::unordered_map< OUString, ScAutoNameAddresses, OUStringHash > ScAutoNameHashMap;
+typedef std::vector< ScAddress > ScAutoNameAddresses;
+typedef std::unordered_map< OUString, ScAutoNameAddresses, OUStringHash > ScAutoNameHashMap;
/** Cache for faster lookup of automatic names during CompileXML
(during CompileXML, no document content is changed). */