mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2025-10-30 08:03:03 +00:00
Add missing typename to fix compilation on some compilers
This commit is contained in:
parent
1a6471a3a8
commit
5f128e2ac1
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ class LockedSlotmap {
|
||||||
private:
|
private:
|
||||||
std::mutex mutex{};
|
std::mutex mutex{};
|
||||||
dod::slot_map32<ValueType> map{};
|
dod::slot_map32<ValueType> map{};
|
||||||
using key_t = dod::slot_map32<ValueType>::key;
|
using key_t = typename dod::slot_map32<ValueType>::key;
|
||||||
public:
|
public:
|
||||||
bool get(uint32_t key, ValueType** out) {
|
bool get(uint32_t key, ValueType** out) {
|
||||||
std::lock_guard lock{mutex};
|
std::lock_guard lock{mutex};
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue