diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2012-12-24 00:31:17 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2012-12-24 00:31:17 +0200 |
commit | 3297faaaa8bde097a0b80f85a999d9fb9c423d00 (patch) | |
tree | 59331ca10dc83e8c2f7631182d9c4718c7ad0cff /environment.py | |
parent | 70bf9b03be73295838a040c3bb2e85bfd5d5f6a0 (diff) | |
download | meson-3297faaaa8bde097a0b80f85a999d9fb9c423d00.zip meson-3297faaaa8bde097a0b80f85a999d9fb9c423d00.tar.gz meson-3297faaaa8bde097a0b80f85a999d9fb9c423d00.tar.bz2 |
Make CCompiler more of an abstract base class.
Diffstat (limited to 'environment.py')
-rwxr-xr-x | environment.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/environment.py b/environment.py index 1127af9..0eb0dfe 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'] |