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 /io/source | |
parent | aac09aee6761197a023fba69a88340fdba0684fb (diff) |
moving the rest of ure repository to boost unordered containers
Diffstat (limited to 'io/source')
-rw-r--r-- | io/source/acceptor/acc_socket.cxx | 4 | ||||
-rw-r--r-- | io/source/connector/connector.hxx | 4 | ||||
-rw-r--r-- | io/source/stm/odata.cxx | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/io/source/acceptor/acc_socket.cxx b/io/source/acceptor/acc_socket.cxx index de362b1f51d2..c3ae4a775e4c 100644 --- a/io/source/acceptor/acc_socket.cxx +++ b/io/source/acceptor/acc_socket.cxx @@ -30,7 +30,7 @@ #include "precompiled_io.hxx" #include "acceptor.hxx" -#include <hash_set> +#include <boost/unordered_set.hpp> #include <algorithm> #include <rtl/ustrbuf.hxx> @@ -68,7 +68,7 @@ namespace io_acceptor { }; - typedef ::std::hash_set< ::com::sun::star::uno::Reference< ::com::sun::star::io::XStreamListener>, + typedef ::boost::unordered_set< ::com::sun::star::uno::Reference< ::com::sun::star::io::XStreamListener>, ReferenceHash< ::com::sun::star::io::XStreamListener>, ReferenceEqual< ::com::sun::star::io::XStreamListener> > XStreamListener_hash_set; diff --git a/io/source/connector/connector.hxx b/io/source/connector/connector.hxx index ed4015ded0a5..6ed0e91619c8 100644 --- a/io/source/connector/connector.hxx +++ b/io/source/connector/connector.hxx @@ -33,7 +33,7 @@ #include <com/sun/star/connection/XConnection.hpp> #include <com/sun/star/connection/XConnectionBroadcaster.hpp> -#include <hash_set> +#include <boost/unordered_set.hpp> # include <osl/socket.hxx> # include <osl/pipe.hxx> @@ -60,7 +60,7 @@ namespace stoc_connector } }; - typedef ::std::hash_set< ::com::sun::star::uno::Reference< ::com::sun::star::io::XStreamListener>, + typedef ::boost::unordered_set< ::com::sun::star::uno::Reference< ::com::sun::star::io::XStreamListener>, ReferenceHash< ::com::sun::star::io::XStreamListener>, ReferenceEqual< ::com::sun::star::io::XStreamListener> > XStreamListener_hash_set; diff --git a/io/source/stm/odata.cxx b/io/source/stm/odata.cxx index b5be8e855ba9..4237977b6b15 100644 --- a/io/source/stm/odata.cxx +++ b/io/source/stm/odata.cxx @@ -31,7 +31,7 @@ // streams -#include <hash_map> +#include <boost/unordered_map.hpp> #include <vector> #include <com/sun/star/io/XObjectInputStream.hpp> @@ -951,7 +951,7 @@ struct hashObjectContainer_Impl } }; -typedef hash_map +typedef boost::unordered_map < Reference< XInterface >, sal_Int32, |