[*] nuke unordered-dense, use boost::container::unordered_flat_{map,set}

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie
2026-08-30 08:15:47 +00:00
parent e5b656e372
commit 9d5861e830
115 changed files with 350 additions and 347 deletions
+3 -2
View File
@@ -11,7 +11,8 @@
#include <mutex>
#include <stdexcept>
#include <thread>
#include <ankerl/unordered_dense.h>
#include <boost/unordered/unordered_flat_map.hpp>
#include <boost/unordered/unordered_flat_set.hpp>
#include <vector>
#include <catch2/catch_test_macros.hpp>
@@ -39,7 +40,7 @@ public:
private:
mutable std::mutex mutex;
ankerl::unordered_dense::map<std::thread::id, u32> ids;
boost::container::unordered_flat_map<std::thread::id, u32> ids;
};
class TestControl1 {