diff options
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 494b6ba..9a13531 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -1744,7 +1744,7 @@ class Executable(BuildTarget): return [self.vs_import_filename, self.gcc_import_filename] return [] - def get_debug_filename(self): + def get_debug_filename(self) -> T.Optional[str]: """ The name of debuginfo file that will be created by the compiler @@ -2087,7 +2087,7 @@ class SharedLibrary(BuildTarget): """ return self.import_filename - def get_debug_filename(self): + def get_debug_filename(self) -> T.Optional[str]: """ The name of debuginfo file that will be created by the compiler |