mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-08-31 18:46:08 +00:00
17 lines
454 B
C++
17 lines
454 B
C++
|
|
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
||
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "common/container_hash.h"
|
||
|
|
|
||
|
|
#include <boost/unordered/unordered_flat_set.hpp>
|
||
|
|
|
||
|
|
namespace Common {
|
||
|
|
|
||
|
|
template <class Key, class Hash = std::hash<Key>, class Pred = std::equal_to<Key>,
|
||
|
|
class Allocator = std::allocator<Key>>
|
||
|
|
using unordered_set = boost::unordered::unordered_flat_set<Key, Hash, Pred, Allocator>;
|
||
|
|
|
||
|
|
}
|