From 3297faaaa8bde097a0b80f85a999d9fb9c423d00 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Mon, 24 Dec 2012 00:31:17 +0200 Subject: [PATCH] Make CCompiler more of an abstract base class. --- environment.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/environment.py b/environment.py index 1127af994..0eb0dfec6 100755 --- a/environment.py +++ b/environment.py @@ -33,9 +33,6 @@ def detect_c_compiler(execmd): class CCompiler(): def __init__(self, exelist): self.exelist = exelist - - def get_std_warn_flags(self): - return [] class GnuCCompiler(CCompiler): std_warn_flags = ['-Wall']