mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-06-02 22:47:10 +02:00
Compare commits
2 commits
a4f10ae799
...
06f9a56465
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
06f9a56465 | ||
|
|
56c474c1d4 |
1 changed files with 2 additions and 2 deletions
|
|
@ -12,6 +12,7 @@
|
|||
#include <memory>
|
||||
#include <mutex>
|
||||
#include <optional>
|
||||
#include <unordered_map>
|
||||
#include <ankerl/unordered_dense.h>
|
||||
#include <assert.h>
|
||||
|
||||
|
|
@ -161,8 +162,7 @@ private:
|
|||
std::list<std::shared_ptr<Handle>> unmap_queue{};
|
||||
std::mutex unmap_queue_lock{}; //!< Protects access to `unmap_queue`
|
||||
|
||||
ankerl::unordered_dense::map<Handle::Id, std::shared_ptr<Handle>>
|
||||
handles{}; //!< Main owning map of handles
|
||||
std::unordered_map<Handle::Id, std::shared_ptr<Handle>> handles{}; //!< Main owning map of handles
|
||||
std::mutex handles_lock; //!< Protects access to `handles`
|
||||
|
||||
static constexpr u32 HandleIdIncrement{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue