summaryrefslogtreecommitdiff
path: root/sc/inc/macromgr.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-02 16:22:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-03 21:11:20 +0000
commit79f115b91e5ad4d9038e127bf0b57843e157eac9 (patch)
tree704dee023dca3144f78613c41ba528ed65b1d80f /sc/inc/macromgr.hxx
parent05dcb073d60579a142e3074fb1b137f36840ee9e (diff)
boost::unordered_map->std::unordered_map
Change-Id: I2c65709cda6f10810452dfb8aa1a247cb3a5564f
Diffstat (limited to 'sc/inc/macromgr.hxx')
-rw-r--r--sc/inc/macromgr.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/macromgr.hxx b/sc/inc/macromgr.hxx
index fbf78ae50e47..996ea653b0d6 100644
--- a/sc/inc/macromgr.hxx
+++ b/sc/inc/macromgr.hxx
@@ -15,9 +15,9 @@
#include <rtl/ustring.hxx>
#include "scdllapi.h"
-#include <boost/unordered_map.hpp>
-#include <boost/unordered_set.hpp>
#include <memory>
+#include <unordered_map>
+#include <unordered_set>
class ScDocument;
class ScFormulaCell;
@@ -38,7 +38,7 @@ public:
void BroadcastModuleUpdate(const OUString& aModuleName);
private:
- typedef boost::unordered_map< OUString, bool, OUStringHash, ::std::equal_to< OUString > > NameBoolMap;
+ typedef std::unordered_map< OUString, bool, OUStringHash, ::std::equal_to< OUString > > NameBoolMap;
NameBoolMap mhFuncToVolatile;
com::sun::star::uno::Reference< com::sun::star::container::XContainerListener > mxContainerListener;