mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-31 01:25:18 +01:00
rsx: Replace robin_hood with ankerl::unordered_dense
This commit is contained in:
2551
3rdparty/robin_hood/include/robin_hood.h
vendored
2551
3rdparty/robin_hood/include/robin_hood.h
vendored
File diff suppressed because it is too large
Load Diff
2101
3rdparty/unordered_dense/include/unordered_dense.h
vendored
Normal file
2101
3rdparty/unordered_dense/include/unordered_dense.h
vendored
Normal file
File diff suppressed because it is too large
Load Diff
@@ -9,11 +9,11 @@ namespace rsx
|
||||
using unordered_map = std::unordered_map<T, U>;
|
||||
}
|
||||
#else
|
||||
#include "3rdparty/robin_hood/include/robin_hood.h"
|
||||
#include "3rdparty/unordered_dense/include/unordered_dense.h"
|
||||
|
||||
namespace rsx
|
||||
{
|
||||
template<typename T, typename U>
|
||||
using unordered_map = ::robin_hood::unordered_map<T, U>;
|
||||
using unordered_map = ankerl::unordered_dense::map<T, U>;
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user