Avoid concatenating two options in list

'c++17' and 'gnu++98' were concatenated due to a missing comma
pull/3890/head
Thomas Hindoe Paaboel Andersen 6 years ago committed by Jussi Pakkanen
parent c3e68189cd
commit e2c36457c5
  1. 2
      mesonbuild/compilers/cpp.py

@ -111,7 +111,7 @@ class ArmclangCPPCompiler(ArmclangCompiler, CPPCompiler):
def get_options(self):
opts = CPPCompiler.get_options(self)
opts.update({'cpp_std': coredata.UserComboOption('cpp_std', 'C++ language standard to use',
['none', 'c++98', 'c++03', 'c++11', 'c++14', 'c++17'
['none', 'c++98', 'c++03', 'c++11', 'c++14', 'c++17',
'gnu++98', 'gnu++03', 'gnu++11', 'gnu++14', 'gnu++17'],
'none')})
return opts

Loading…
Cancel
Save