summaryrefslogtreecommitdiffstats
path: root/sc/inc/columnset.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/columnset.hxx
parentUse std::make_shared (diff)
downloadcore-79f115b91e5ad4d9038e127bf0b57843e157eac9.tar.gz
core-79f115b91e5ad4d9038e127bf0b57843e157eac9.zip
boost::unordered_map->std::unordered_map
Change-Id: I2c65709cda6f10810452dfb8aa1a247cb3a5564f
Diffstat (limited to 'sc/inc/columnset.hxx')
-rw-r--r--sc/inc/columnset.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/columnset.hxx b/sc/inc/columnset.hxx
index bbee5be3b233..3ee8fbaed933 100644
--- a/sc/inc/columnset.hxx
+++ b/sc/inc/columnset.hxx
@@ -12,9 +12,9 @@
#include "address.hxx"
+#include <unordered_set>
+#include <unordered_map>
#include <vector>
-#include <boost/unordered_set.hpp>
-#include <boost/unordered_map.hpp>
namespace sc {
@@ -23,8 +23,8 @@ namespace sc {
*/
class ColumnSet
{
- typedef boost::unordered_set<SCCOL> ColsType;
- typedef boost::unordered_map<SCTAB, ColsType> TabsType;
+ typedef std::unordered_set<SCCOL> ColsType;
+ typedef std::unordered_map<SCTAB, ColsType> TabsType;
TabsType maTabs;
public: