Skip to content

Commit 4cedc9d

Browse files
authored
GH-48125: [C++] Remove gnu11 standard from the Meson configuration (#48126)
### Rationale for this change The gnu11 standard flag seems unnecesary ### What changes are included in this PR? Removed the gnu11 standard flag from the top level Meson configuration ### Are these changes tested? Yes ### Are there any user-facing changes? No * GitHub Issue: #48125 Authored-by: Will Ayd <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent f8ae141 commit 4cedc9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ project(
2222
version: '23.0.0-SNAPSHOT',
2323
license: 'Apache-2.0',
2424
meson_version: '>=1.3.0',
25-
default_options: ['c_std=gnu11,c11', 'warning_level=2', 'cpp_std=c++17'],
25+
default_options: ['c_std=c11', 'warning_level=2', 'cpp_std=c++17'],
2626
)
2727

2828
project_args = [

0 commit comments

Comments
 (0)