rsx: Replace robin_hood with ankerl::unordered_dense

This commit is contained in:
Ani 2025-04-08 07:29:17 +02:00 committed by Megamouse
parent 15758171f0
commit db85595124
3 changed files with 2103 additions and 2553 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -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