diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-08-27 10:45:39 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-12-07 11:05:33 +0100 |
commit | fa67f096bdea9db59dd20c470c9e32f3dac5be94 (patch) | |
tree | f01189bd2cfbafa8a93485034613256b0e8d7655 /build-aux | |
parent | dce1dfbc47050404bcf3ce2461e8baff0b088ffb (diff) |
build: Require C++20 compiler
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/m4/ax_cxx_compile_stdcxx.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/m4/ax_cxx_compile_stdcxx.m4 b/build-aux/m4/ax_cxx_compile_stdcxx.m4 index 51a35054d0..8a2df5627f 100644 --- a/build-aux/m4/ax_cxx_compile_stdcxx.m4 +++ b/build-aux/m4/ax_cxx_compile_stdcxx.m4 @@ -983,7 +983,7 @@ m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_20], [[ #error "This is not a C++ compiler" -#elif __cplusplus < 202002L +#elif __cplusplus < 201709L // Temporary patch on top of upstream to allow g++-10 #error "This is not a C++20 compiler" |