diff options
author | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-04-12 13:29:35 +0200 |
---|---|---|
committer | Julian Taylor <jtaylor.debian@googlemail.com> | 2014-04-24 20:45:12 +0200 |
commit | 999753f85153ae68536aebe9f51ee3ff02b950bc (patch) | |
tree | 25bdd7ac2adb9dbce0c9e2e428c27e0d193758da /tools | |
parent | d598cf1854d84e652ec1e35bb726b147fd6b311d (diff) | |
download | python-numpy-999753f85153ae68536aebe9f51ee3ff02b950bc.tar.gz python-numpy-999753f85153ae68536aebe9f51ee3ff02b950bc.tar.bz2 python-numpy-999753f85153ae68536aebe9f51ee3ff02b950bc.zip |
MAINT: annotate reference stealing and burrowed refs in multiarray
allows for better static analysis report with e.g. cpychecker
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/travis-test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh index df9dedeca..f06aea8f6 100755 --- a/tools/travis-test.sh +++ b/tools/travis-test.sh @@ -24,7 +24,7 @@ if [ -z "$USE_DEBUG" ]; then else sysflags="$($PYTHON -c "from distutils import sysconfig; print (sysconfig.get_config_var('CFLAGS'))")" # windows compilers have this requirement - CFLAGS="$sysflags -Werror=declaration-after-statement" $PYTHON setup.py build_ext --inplace + CFLAGS="$sysflags -Werror=declaration-after-statement -Werror=nonnull" $PYTHON setup.py build_ext --inplace fi } |