diff options
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; |