mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 11:05:16 +00:00
rsx: Replace robin_hood with ankerl::unordered_dense
This commit is contained in:
parent
15758171f0
commit
db85595124
3 changed files with 2103 additions and 2553 deletions
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
|
||||
|
|
Loading…
Add table
Reference in a new issue