Codechange: We are heading to 15

This commit is contained in:
Rubidium
2024-02-18 17:38:26 +01:00
committed by rubidium42
parent 73bed054b8
commit a4d4301a0c
14 changed files with 30 additions and 8 deletions

View File

@@ -22,7 +22,7 @@
*/
static bool CheckAPIVersion(const std::string &api_version)
{
static const std::set<std::string> versions = { "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "1.10", "1.11", "12", "13", "14" };
static const std::set<std::string> versions = { "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "1.10", "1.11", "12", "13", "14", "15" };
return versions.find(api_version) != versions.end();
}