From 5f128e2ac1833b511e6ecfded0ccd196fcd6a5a1 Mon Sep 17 00:00:00 2001 From: Mr-Wiseguy Date: Thu, 3 Apr 2025 03:50:15 -0400 Subject: [PATCH] Add missing typename to fix compilation on some compilers --- src/game/recomp_data_api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/recomp_data_api.cpp b/src/game/recomp_data_api.cpp index bb7d37c..2557abf 100644 --- a/src/game/recomp_data_api.cpp +++ b/src/game/recomp_data_api.cpp @@ -109,7 +109,7 @@ class LockedSlotmap { private: std::mutex mutex{}; dod::slot_map32 map{}; - using key_t = dod::slot_map32::key; + using key_t = typename dod::slot_map32::key; public: bool get(uint32_t key, ValueType** out) { std::lock_guard lock{mutex};