Import project: Add stdcpp20 and stdcpplatest

This commit is contained in:
Daniel Marjamäki 2020-05-26 08:53:37 +02:00
parent d70911c801
commit 39fec386a1
1 changed files with 4 additions and 0 deletions

View File

@ -474,6 +474,10 @@ namespace {
cppstd = Standards::CPP14;
else if (std::strcmp(e->GetText(), "stdcpp17") == 0)
cppstd = Standards::CPP17;
else if (std::strcmp(e->GetText(), "stdcpp20") == 0)
cppstd = Standards::CPP20;
else if (std::strcmp(e->GetText(), "stdcpplatest") == 0)
cppstd = Standards::CPPLatest;
}
}
}