diff options
author | Fridrich Strba <fridrich.strba@bluewin.ch> | 2011-02-03 16:24:08 -0700 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-04 00:28:23 +0100 |
commit | 030633cd53e8aacdcf1927c46dd6d5b8db58d841 (patch) | |
tree | 300d66694581d452a9709f736ad7376ca8f55043 /stoc/source/namingservice | |
parent | aac09aee6761197a023fba69a88340fdba0684fb (diff) |
moving the rest of ure repository to boost unordered containers
Diffstat (limited to 'stoc/source/namingservice')
-rw-r--r-- | stoc/source/namingservice/namingservice.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/source/namingservice/namingservice.cxx b/stoc/source/namingservice/namingservice.cxx index 215e7c9180ae..761f9161966f 100644 --- a/stoc/source/namingservice/namingservice.cxx +++ b/stoc/source/namingservice/namingservice.cxx @@ -29,7 +29,7 @@ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_stoc.hxx" -#include <hash_map> +#include <boost/unordered_map.hpp> #include <osl/mutex.hxx> #include <osl/diagnose.h> #include <uno/dispatcher.h> @@ -103,7 +103,7 @@ struct hashOWString_Impl { return rName.hashCode(); } }; -typedef hash_map +typedef boost::unordered_map < OUString, Reference<XInterface >, |