diff options
author | Somasekhar Penugonda <somashekar.penugonda@cirrus.com> | 2018-03-28 15:11:45 +0530 |
---|---|---|
committer | Bedarkar, Malhar <malhar.bedarkar@cirrus.com> | 2018-03-31 19:23:31 -0500 |
commit | 7f8908336362cccd45516f48b5320380cec0e817 (patch) | |
tree | 14c01f03fb4dd5cd4aed515a5860fba3d3748a66 | |
parent | e62b8109ebfef437a380f2d8cedd1565095a5574 (diff) | |
download | meson-7f8908336362cccd45516f48b5320380cec0e817.zip meson-7f8908336362cccd45516f48b5320380cec0e817.tar.gz meson-7f8908336362cccd45516f48b5320380cec0e817.tar.bz2 |
Fix for issue in cpp.py
Change-Id: Iad9623d20eb5086528dacefce5d2f4f9bb9d0312
-rw-r--r-- | mesonbuild/compilers/cpp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index 952f7f2..f6f5bba 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -219,9 +219,9 @@ class VisualStudioCPPCompiler(VisualStudioCCompiler, CPPCompiler): class ArmCPPCompiler(ArmCompiler, CPPCompiler): - def __init__(self, exelist, version, is_cross, exe_wrap=None, defines=None, **kwargs): + def __init__(self, exelist, version, is_cross, exe_wrap=None, **kwargs): CPPCompiler.__init__(self, exelist, version, is_cross, exe_wrap, **kwargs) - ArmCompiler.__init__(self, defines) + ArmCompiler.__init__(self) def get_options(self): opts = {'cpp_std': coredata.UserComboOption('cpp_std', 'C++ language standard to use', |