diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-06 10:37:38 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-06 10:37:38 +0100 |
commit | c49b647c0ad2b5f7e729b4b8f4d4c21629d0be0c (patch) | |
tree | 5c05613ee96ac58466c9c037e1bbe0348a780168 /unoxml/source | |
parent | b38becea53ec584dc00315e416e6282d918ba6e1 (diff) |
sgi hash containers -> boost unordered containers
Diffstat (limited to 'unoxml/source')
-rw-r--r-- | unoxml/source/dom/node.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unoxml/source/dom/node.hxx b/unoxml/source/dom/node.hxx index be84ee49087c..d880eab60c75 100644 --- a/unoxml/source/dom/node.hxx +++ b/unoxml/source/dom/node.hxx @@ -56,7 +56,7 @@ #include <libxml/tree.h> #include <map> -#include <hash_map> +#include <boost/unordered_map.hpp> using ::rtl::OUString; using ::rtl::OString; @@ -92,7 +92,7 @@ namespace DOM }; typedef std::vector< std::vector<Namespace> > NamespaceVectorType; - typedef std::hash_map< OUString, + typedef boost::unordered_map< OUString, sal_Int32, rtl::OUStringHash > NamespaceMapType; |