Use string view literal

This commit is contained in:
momo5502
2024-11-16 17:33:52 +01:00
parent 78e2a5a80b
commit 09d850b902

View File

@@ -129,7 +129,7 @@ int main(const int argc, char** argv)
}
//setvbuf(stdout, nullptr, _IOFBF, 0x10000);
if (argc > 2 && argv[1] == "-d"s)
if (argc > 2 && argv[1] == "-d"sv)
{
use_gdb = true;
}