Skip to content

Commit cc037b8

Browse files
build: upgrade to C++23
Meson 1.1.1 and GCC-13 both support C++23 and a sufficient portion of the standard has been implemented. Upgrade the build to leverage it. Change-Id: I9c02f330a8f0cc2924d45557bf7d2f51388e303c Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
1 parent edd211e commit cc037b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ project(
33
'cpp',
44
default_options: [
55
'warning_level=3',
6-
'cpp_std=c++20'
6+
'cpp_std=c++23'
77
],
88
license: 'Apache-2.0',
99
version: '0.1',
10-
meson_version: '>=0.58.0',
10+
meson_version: '>=1.1.1',
1111
)
1212

1313
add_project_arguments(

0 commit comments

Comments
 (0)