mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-30 18:30:51 +00:00
[*] nuke unordered-dense, use boost::container::unordered_flat_{map,set}
Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user