rsx: Replace robin_hood with ankerl::unordered_dense

This commit is contained in:
Ani 2025-04-08 07:29:17 +02:00
parent 16036e0419
commit ee98cc20fd
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>;
}
#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