diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-01 19:58:59 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-02 16:14:36 +0000 |
commit | fd1372ba8b1c3eb3c7fad6d9c623176c8071f31b (patch) | |
tree | 448f0d04f780007b3eeeb76b7c4c8c54cbfd6d9b /io | |
parent | c48b928acab9f226ad5ad816fe773c21051431e8 (diff) |
boost::unordered_map->std::unordered_map
you can get debug stl this way
Change-Id: Ia70a3e7c7c452390e8bee34975d296c9318e4a19
Diffstat (limited to 'io')
-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 | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/io/source/acceptor/acc_socket.cxx b/io/source/acceptor/acc_socket.cxx index d98e79c3b076..830a9b36375d 100644 --- a/io/source/acceptor/acc_socket.cxx +++ b/io/source/acceptor/acc_socket.cxx @@ -19,8 +19,8 @@ #include "acceptor.hxx" -#include <boost/unordered_set.hpp> #include <algorithm> +#include <unordered_set> #include <osl/mutex.hxx> #include <rtl/ustrbuf.hxx> @@ -57,7 +57,7 @@ namespace io_acceptor { }; - typedef ::boost::unordered_set< ::com::sun::star::uno::Reference< ::com::sun::star::io::XStreamListener>, + typedef std::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 cf24e18c9cda..8c439ad5e28e 100644 --- a/io/source/connector/connector.hxx +++ b/io/source/connector/connector.hxx @@ -26,7 +26,7 @@ #include <com/sun/star/connection/XConnection.hpp> #include <com/sun/star/connection/XConnectionBroadcaster.hpp> -#include <boost/unordered_set.hpp> +#include <unordered_set> #include <osl/socket.hxx> #include <osl/pipe.hxx> @@ -51,7 +51,7 @@ namespace stoc_connector } }; - typedef ::boost::unordered_set< ::com::sun::star::uno::Reference< ::com::sun::star::io::XStreamListener>, + typedef std::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 41ecd1193b2e..358d226c9e79 100644 --- a/io/source/stm/odata.cxx +++ b/io/source/stm/odata.cxx @@ -17,9 +17,9 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <boost/unordered_map.hpp> -#include <vector> #include <string.h> +#include <unordered_map> +#include <vector> #include <cppuhelper/weak.hxx> #include <cppuhelper/factory.hxx> @@ -912,7 +912,7 @@ struct hashObjectContainer_Impl } }; -typedef boost::unordered_map +typedef std::unordered_map < Reference< XInterface >, sal_Int32, |