summaryrefslogtreecommitdiffstats
path: root/sc/inc/mtvelements.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/mtvelements.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/mtvelements.hxx')
-rw-r--r--sc/inc/mtvelements.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/mtvelements.hxx b/sc/inc/mtvelements.hxx
index 1d303ceea72d..49a164627a72 100644
--- a/sc/inc/mtvelements.hxx
+++ b/sc/inc/mtvelements.hxx
@@ -32,7 +32,7 @@
#include <mdds/multi_type_vector_custom_func1.hpp>
#include <mdds/multi_type_vector_custom_func3.hpp>
-#include <boost/unordered_map.hpp>
+#include <unordered_map>
class ScDocument;
struct ScRefCellValue;
@@ -125,8 +125,8 @@ struct ColumnBlockConstPosition
class ColumnBlockPositionSet
{
- typedef boost::unordered_map<SCCOL, ColumnBlockPosition> ColumnsType;
- typedef boost::unordered_map<SCTAB, ColumnsType> TablesType;
+ typedef std::unordered_map<SCCOL, ColumnBlockPosition> ColumnsType;
+ typedef std::unordered_map<SCTAB, ColumnsType> TablesType;
ScDocument& mrDoc;
TablesType maTables;