From 24669925493eb2decd2321d72eddf5898a6713b6 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Sun, 1 Sep 2019 13:34:31 +0200 Subject: [PATCH] [meta] Use -std=c++17 Realistically, there is no way to build recent versions of DXVK anymore with a compiler that doesn't have C++17 support. GCC 8.x (maybe 7.x?) or Clang 5.x should support this. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9c4bbbf3..eddfc0bc 100644 --- a/meson.build +++ b/meson.build @@ -9,7 +9,7 @@ if dxvk_compiler.get_id() == 'msvc' dxvk_cpp_std='c++latest' dxvk_msvc=true else - dxvk_cpp_std='c++1z' + dxvk_cpp_std='c++17' dxvk_msvc=false endif