rsx: Replace robin_hood with ankerl::unordered_dense
This commit is contained in:
-2551
File diff suppressed because it is too large
Load Diff
+2101
File diff suppressed because it is too large
Load Diff
@@ -9,11 +9,11 @@ namespace rsx
|
|||||||
using unordered_map = std::unordered_map<T, U>;
|
using unordered_map = std::unordered_map<T, U>;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
#include "3rdparty/robin_hood/include/robin_hood.h"
|
#include "3rdparty/unordered_dense/include/unordered_dense.h"
|
||||||
|
|
||||||
namespace rsx
|
namespace rsx
|
||||||
{
|
{
|
||||||
template<typename T, typename U>
|
template<typename T, typename U>
|
||||||
using unordered_map = ::robin_hood::unordered_map<T, U>;
|
using unordered_map = ankerl::unordered_dense::map<T, U>;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user