diff options
Diffstat (limited to 'numpy/distutils/command/autodist.py')
-rw-r--r-- | numpy/distutils/command/autodist.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/numpy/distutils/command/autodist.py b/numpy/distutils/command/autodist.py index 8598b33e6..5a9470b9b 100644 --- a/numpy/distutils/command/autodist.py +++ b/numpy/distutils/command/autodist.py @@ -75,10 +75,3 @@ main() } """ % (attribute, ) return cmd.try_compile(body, None, None) != 0 - -def check_compile_without_warning(cmd, body): - cmd._check_compiler() - ret, output = cmd.try_output_compile(body, None, None) - if not ret or len(output) > 0: - return False - return True |