Merge pull request #2322 from zjeffer/master

Use C++20 by default
This commit is contained in:
Alexis Rouillard 2023-07-24 09:27:18 +02:00 committed by GitHub
commit 6dfa74bd5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ jobs:
- fedora
- opensuse
- gentoo
cpp_std: [c++17]
cpp_std: [c++20]
include:
- distro: fedora
cpp_std: c++20

View File

@ -4,7 +4,7 @@ project(
license: 'MIT',
meson_version: '>= 0.50.0',
default_options : [
'cpp_std=c++17',
'cpp_std=c++20',
'buildtype=release',
'default_library=static'
],