Skip to content

Commit

Permalink
Allow using C23 with objective C
Browse files Browse the repository at this point in the history
  • Loading branch information
theoparis committed Jan 22, 2025
1 parent 0b9baf5 commit ea6aaa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesonbuild/compilers/objc.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def get_options(self) -> 'coredata.MutableKeyedOptionDictType':
self.create_option(options.UserComboOption,
OptionKey('c_std', machine=self.for_machine),
'C language standard to use',
['none', 'c89', 'c99', 'c11', 'c17', 'gnu89', 'gnu99', 'gnu11', 'gnu17'],
['none', 'c89', 'c99', 'c11', 'c17', 'c2x', 'gnu89', 'gnu99', 'gnu11', 'gnu17', 'gnu2x'],
'none'),
)

Expand Down

0 comments on commit ea6aaa5

Please sign in to comment.