summaryrefslogtreecommitdiff
path: root/numpy/distutils/ccompiler.py
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2019-10-26 10:30:59 +0300
committermattip <matti.picus@gmail.com>2019-10-26 10:30:59 +0300
commit955b2906c6da37844b0ee54b8a53850cf5df199f (patch)
tree5216de083c6c697fd95104d011533cf477d01fef /numpy/distutils/ccompiler.py
parent3cf96c801745a608714e5235e97f5880824234b0 (diff)
downloadnumpy-955b2906c6da37844b0ee54b8a53850cf5df199f.tar.gz
MAINT: fixes from review
Diffstat (limited to 'numpy/distutils/ccompiler.py')
-rw-r--r--numpy/distutils/ccompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py
index 1b5a14cfd..684c7535b 100644
--- a/numpy/distutils/ccompiler.py
+++ b/numpy/distutils/ccompiler.py
@@ -533,7 +533,7 @@ def CCompiler_customize(self, dist, need_cxx=0):
'clang' in self.compiler[0]):
self._auto_depends = True
if 'gcc' in self.compiler[0]:
- # add std=c99 flag for gcc < 5
+ # add std=c99 flag for gcc
# TODO: does this need to be more specific?
self.compiler.append('-std=c99')
self.compiler_so.append('-std=c99')