mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 01:49:42 -06:00
FIX: this should be namespace std:: to preserve compatibilty with non-glibc when building without gdb stub
This commit is contained in:

committed by
Nadia Holmquist Pedersen

parent
66d1091330
commit
be26878b4c
@ -1292,7 +1292,7 @@ bool EmuInstance::updateConsole() noexcept
|
|||||||
};
|
};
|
||||||
auto gdbargs = gdbopt.GetBool("Enabled") ? std::make_optional(_gdbargs) : std::nullopt;
|
auto gdbargs = gdbopt.GetBool("Enabled") ? std::make_optional(_gdbargs) : std::nullopt;
|
||||||
#else
|
#else
|
||||||
optional<GDBArgs> gdbargs = std::nullopt;
|
std::optional<GDBArgs> gdbargs = std::nullopt;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
NDSArgs ndsargs {
|
NDSArgs ndsargs {
|
||||||
|
Reference in New Issue
Block a user