Skip to content

Commit

Permalink
FIX: this should be namespace std:: to preserve compatibilty with non…
Browse files Browse the repository at this point in the history
…-glibc when building without gdb stub
  • Loading branch information
Izder456 authored and nadiaholmquist committed Dec 25, 2024
1 parent 66d1091 commit be26878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/frontend/qt_sdl/EmuInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ bool EmuInstance::updateConsole() noexcept
};
auto gdbargs = gdbopt.GetBool("Enabled") ? std::make_optional(_gdbargs) : std::nullopt;
#else
optional<GDBArgs> gdbargs = std::nullopt;
std::optional<GDBArgs> gdbargs = std::nullopt;
#endif

NDSArgs ndsargs {
Expand Down

0 comments on commit be26878

Please sign in to comment.