// 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_map = boost::unordered::unordered_flat_map; }