mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2025-04-11 21:51:26 +02:00
Add missing typename to fix compilation on some compilers
This commit is contained in:
parent
1a6471a3a8
commit
5f128e2ac1
@ -109,7 +109,7 @@ class LockedSlotmap {
|
||||
private:
|
||||
std::mutex mutex{};
|
||||
dod::slot_map32<ValueType> map{};
|
||||
using key_t = dod::slot_map32<ValueType>::key;
|
||||
using key_t = typename dod::slot_map32<ValueType>::key;
|
||||
public:
|
||||
bool get(uint32_t key, ValueType** out) {
|
||||
std::lock_guard lock{mutex};
|
||||
|
Loading…
x
Reference in New Issue
Block a user