// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project // SPDX-License-Identifier: GPL-3.0-or-later #pragma once #include "common/container_hash.h" #include namespace Common { template , class Pred = std::equal_to, class Allocator = std::allocator> using unordered_set = boost::unordered::unordered_flat_set; }