Skip to content

Commit 5065db8

Browse files
dcbakerjpakkane
authored andcommitted
compilers/c: Fix removal of name from Combo options for ICL
1 parent 906aa4c commit 5065db8

File tree

1 file changed

+1
-1
lines changed
  • mesonbuild/compilers

1 file changed

+1
-1
lines changed

mesonbuild/compilers/c.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def __init__(self, exelist, version, is_cross, exe_wrap, target):
292292
def get_options(self):
293293
opts = super().get_options()
294294
c_stds = ['none', 'c89', 'c99', 'c11']
295-
opts.update({'c_std': coredata.UserComboOption('c_std', 'C language standard to use',
295+
opts.update({'c_std': coredata.UserComboOption('C language standard to use',
296296
c_stds,
297297
'none')})
298298
return opts

0 commit comments

Comments
 (0)