diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-12-25 12:20:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-25 12:20:26 -0700 |
commit | 3abb5f8c3cd0947d4cf64c3dbcd9fda5a5c22caa (patch) | |
tree | 36940664373e584e0fad3ab481e93e0d4f688c5d | |
parent | 09dd75e9e2139bc9742e6009b7babe41d4c002df (diff) | |
parent | 9c68725fda8e1a1808144447cccdeab564ddae6e (diff) | |
download | numpy-3abb5f8c3cd0947d4cf64c3dbcd9fda5a5c22caa.tar.gz |
Merge pull request #12612 from charris/update-travis-test-to-c99
TST: Update `travis-test.sh` for C99
-rwxr-xr-x | tools/travis-test.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/travis-test.sh b/tools/travis-test.sh index 44b01a72f..353362066 100755 --- a/tools/travis-test.sh +++ b/tools/travis-test.sh @@ -25,8 +25,7 @@ if [ -n "$PYTHON_OPTS" ]; then fi # make some warnings fatal, mostly to match windows compilers -werrors="-Werror=declaration-after-statement -Werror=vla " -werrors+="-Werror=nonnull -Werror=pointer-arith" +werrors="-Werror=vla -Werror=nonnull -Werror=pointer-arith" # build with c99 by default |