From 4c81b31652c5990ce5d0f89545966a98cf3b2cc4 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Fri, 15 Dec 2023 16:47:32 -0500 Subject: [PATCH] ci: Bump Windows to cpp_std=c++20 Required for designated initializers. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a7dda4d..b38547b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -162,7 +162,7 @@ vs2019 amd64: # Environment variables substitutions is done by PowerShell before calling # cmd.exe, that's why we use $env:FOO instead of %FOO% - cmd.exe /C "C:\BuildTools\Common7\Tools\VsDevCmd.bat -host_arch=amd64 -arch=$env:ARCH -app_platform=$env:PLAT && - meson setup builddir && + meson setup builddir -Dcpp_std=c++20 && meson compile --verbose -C builddir" # Update from: