From 7f8908336362cccd45516f48b5320380cec0e817 Mon Sep 17 00:00:00 2001 From: Somasekhar Penugonda Date: Wed, 28 Mar 2018 15:11:45 +0530 Subject: Fix for issue in cpp.py Change-Id: Iad9623d20eb5086528dacefce5d2f4f9bb9d0312 --- mesonbuild/compilers/cpp.py | 4 ++-- 1 file 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', -- cgit v1.1