Skip to content

Commit

Permalink
build: Require a C++20 compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Persch committed Feb 24, 2021
1 parent b49673e commit eec33cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meson.build
Expand Up @@ -30,9 +30,9 @@ project(
# Compiler requirements

c_req_std = 'gnu11'
cxx_req_std = 'gnu++17'
gxx_req_version = '7.0'
clangxx_req_version = '8.0'
cxx_req_std = 'gnu++20'
gxx_req_version = '10.0'
clangxx_req_version = '11.0'

# Version requirements

Expand Down

0 comments on commit eec33cc

Please sign in to comment.