diff options
Diffstat (limited to 'SCons/Tool/cc.py')
-rw-r--r-- | SCons/Tool/cc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SCons/Tool/cc.py b/SCons/Tool/cc.py index 590ec5fd3..e9cbe530b 100644 --- a/SCons/Tool/cc.py +++ b/SCons/Tool/cc.py @@ -40,7 +40,7 @@ CSuffixes = ['.c', '.m'] if not SCons.Util.case_sensitive_suffixes('.c', '.C'): CSuffixes.append('.C') -def add_common_cc_variables(env): +def add_common_cc_variables(env) -> None: """ Add underlying common "C compiler" variables that are used by multiple tools (specifically, c++). @@ -64,7 +64,7 @@ def add_common_cc_variables(env): compilers = ['cc'] -def generate(env): +def generate(env) -> None: """ Add Builders and construction variables for C compilers to an Environment. """ |