From 98416e7f755dc9d660349556400363e734ac7828 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Thu, 17 Sep 2020 13:33:27 -0700 Subject: compilers: put name_string method in base compiler Every language had the exact same implementation --- mesonbuild/compilers/d.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'mesonbuild/compilers/d.py') diff --git a/mesonbuild/compilers/d.py b/mesonbuild/compilers/d.py index a74dc95..dd6129e 100644 --- a/mesonbuild/compilers/d.py +++ b/mesonbuild/compilers/d.py @@ -633,9 +633,6 @@ class DCompiler(Compiler): def thread_link_flags(self, env): return self.linker.thread_flags(env) - def name_string(self): - return ' '.join(self.exelist) - class GnuDCompiler(GnuCompiler, DCompiler): -- cgit v1.1