From 65d0561d7093365e088f193500d7a822e7875ac9 Mon Sep 17 00:00:00 2001 From: Ralph Sennhauser Date: Mon, 28 Jul 2025 19:01:41 +0200 Subject: [PATCH] Switch to using C++20 Obviously for shiny new features. Signed-off-by: Ralph Sennhauser --- build/premake/premake5.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/premake/premake5.lua b/build/premake/premake5.lua index 2e3a32e81f..3be67f4040 100644 --- a/build/premake/premake5.lua +++ b/build/premake/premake5.lua @@ -485,7 +485,7 @@ function project_create(project_name, target_type) project(project_name) language "C++" - cppdialect "C++17" + cppdialect "C++20" kind(target_type) filter "action:vs2022"