Kaydet (Commit) 110d55cc authored tarafından Michael Stahl's avatar Michael Stahl

sal: replace boost::unordered_set with std::unordered_set

This header is completely internal and not even shipped with the SDK.

Change-Id: I0402e23786bae5eb4f51be8582dcf41475176e4f
üst 7dc0b376
......@@ -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 )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment