aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/compilers.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-09-21 15:35:53 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-10-01 15:05:00 -0700
commit96a1ae6dfe9209d907803b9f2ecca29d2047a47f (patch)
tree1f30efe4b76906ca5db27cea7a5ac0cd4163a0ab /mesonbuild/compilers/compilers.py
parent1d04caff29f675329ecb6491b50578474d71b6f4 (diff)
downloadmeson-96a1ae6dfe9209d907803b9f2ecca29d2047a47f.zip
meson-96a1ae6dfe9209d907803b9f2ecca29d2047a47f.tar.gz
meson-96a1ae6dfe9209d907803b9f2ecca29d2047a47f.tar.bz2
compilers: fully type annotate the C compilers
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r--mesonbuild/compilers/compilers.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py
index 12643b0..ea5c2c5 100644
--- a/mesonbuild/compilers/compilers.py
+++ b/mesonbuild/compilers/compilers.py
@@ -452,6 +452,7 @@ class Compiler(metaclass=abc.ABCMeta):
if T.TYPE_CHECKING:
language = 'unset'
id = ''
+ warn_args = {} # type: T.Dict[str, T.List[str]]
def __init__(self, exelist: T.List[str], version: str,
for_machine: MachineChoice, info: 'MachineInfo',