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 /remotebridges | |
parent | aac09aee6761197a023fba69a88340fdba0684fb (diff) |
moving the rest of ure repository to boost unordered containers
Diffstat (limited to 'remotebridges')
-rw-r--r-- | remotebridges/source/factory/bridgefactory.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/remotebridges/source/factory/bridgefactory.cxx b/remotebridges/source/factory/bridgefactory.cxx index 0e3726f3eae5..b6ef55d18a1c 100644 --- a/remotebridges/source/factory/bridgefactory.cxx +++ b/remotebridges/source/factory/bridgefactory.cxx @@ -25,7 +25,7 @@ * for a copy of the LGPLv3 License. * ************************************************************************/ -#include <hash_map> +#include <boost/unordered_map.hpp> #include <rtl/alloc.h> @@ -84,7 +84,7 @@ namespace remotebridges_factory } }; - typedef ::std::hash_map + typedef ::boost::unordered_map < OUString, WeakReference< XBridge >, @@ -93,7 +93,7 @@ namespace remotebridges_factory > BridgeHashMap; - typedef ::std::hash_map + typedef ::boost::unordered_map < OUString, OUString, |