aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/cpp.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-08-03 01:34:15 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2017-08-04 12:54:31 +0300
commitd335a84b9e91bb03bb99a296a5ecf084b325e6ce (patch)
tree4de98a9b8b7ca289d2217ee81408af7e3f1ed55a /mesonbuild/compilers/cpp.py
parent6d939c67370e2fc3f4d4607864ed4addbef22cb7 (diff)
downloadmeson-d335a84b9e91bb03bb99a296a5ecf084b325e6ce.zip
meson-d335a84b9e91bb03bb99a296a5ecf084b325e6ce.tar.gz
meson-d335a84b9e91bb03bb99a296a5ecf084b325e6ce.tar.bz2
A few more lgtm fixes.
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
-rw-r--r--mesonbuild/compilers/cpp.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py
index a8fc8a3..a933f0e 100644
--- a/mesonbuild/compilers/cpp.py
+++ b/mesonbuild/compilers/cpp.py
@@ -175,7 +175,6 @@ class IntelCPPCompiler(IntelCompiler, CPPCompiler):
class VisualStudioCPPCompiler(VisualStudioCCompiler, CPPCompiler):
def __init__(self, exelist, version, is_cross, exe_wrap, is_64):
self.language = 'cpp'
- CPPCompiler.__init__(self, exelist, version, is_cross, exe_wrap)
VisualStudioCCompiler.__init__(self, exelist, version, is_cross, exe_wrap, is_64)
self.base_options = ['b_pch'] # FIXME add lto, pgo and the like