summaryrefslogtreecommitdiff
path: root/include/osl
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-01-29 12:45:54 +0100
committerMichael Stahl <mstahl@redhat.com>2016-01-29 13:47:08 +0100
commit110d55cc11033d72bce908e65bbb6a9506ab39e5 (patch)
tree1a538010e0368d5ce67c682cf132c3e67b68de35 /include/osl
parent7dc0b376e7f5cbff28e2c637786f7421c125cef4 (diff)
sal: replace boost::unordered_set with std::unordered_set
This header is completely internal and not even shipped with the SDK. Change-Id: I0402e23786bae5eb4f51be8582dcf41475176e4f
Diffstat (limited to 'include/osl')
-rw-r--r--include/osl/diagnose.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osl/diagnose.hxx b/include/osl/diagnose.hxx
index c94b9b1dc5ad..ece1e160a2bf 100644
--- a/include/osl/diagnose.hxx
+++ b/include/osl/diagnose.hxx
@@ -26,8 +26,8 @@
#include <cstddef>
#include <functional>
#include <typeinfo>
+#include <unordered_set>
-#include <boost/unordered_set.hpp>
#include <osl/diagnose.h>
#include <osl/interlck.h>
#include <osl/mutex.hxx>
@@ -93,7 +93,7 @@ struct VoidPtrHash : ::std::unary_function<void const*, ::std::size_t> {
}
};
-typedef ::boost::unordered_set<void const*, VoidPtrHash, ::std::equal_to<void const*> > VoidPointerSet;
+typedef ::std::unordered_set<void const*, VoidPtrHash, ::std::equal_to<void const*> > VoidPointerSet;
struct ObjectRegistryData {
ObjectRegistryData( ::std::type_info const& rTypeInfo )