diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-02 16:22:46 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-03 21:11:20 +0000 |
commit | 79f115b91e5ad4d9038e127bf0b57843e157eac9 (patch) | |
tree | 704dee023dca3144f78613c41ba528ed65b1d80f /sw/inc/doc.hxx | |
parent | 05dcb073d60579a142e3074fb1b137f36840ee9e (diff) |
boost::unordered_map->std::unordered_map
Change-Id: I2c65709cda6f10810452dfb8aa1a247cb3a5564f
Diffstat (limited to 'sw/inc/doc.hxx')
-rw-r--r-- | sw/inc/doc.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index c99118565a17..bcc89eaa79ed 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -47,12 +47,12 @@ #include <charfmt.hxx> #include <docary.hxx> -#include <boost/unordered_map.hpp> - #include <svtools/embedhlp.hxx> -#include <vector> -#include <set> + #include <memory> +#include <set> +#include <unordered_map> +#include <vector> #include <boost/scoped_ptr.hpp> #include <boost/ptr_container/ptr_vector.hpp> @@ -339,7 +339,7 @@ class SW_DLLPUBLIC SwDoc : mutable SwNumRuleTbl *mpNumRuleTbl; //< List of all named NumRules. // Hash map to find numrules by name - mutable boost::unordered_map<OUString, SwNumRule *, OUStringHash> maNumRuleMap; + mutable std::unordered_map<OUString, SwNumRule *, OUStringHash> maNumRuleMap; SwUnoCrsrTbl *mpUnoCrsrTbl; |