travis: Ignore unused-parameter warnings

This commit is contained in:
Simon Arlott 2019-09-15 10:26:35 +01:00
parent c4c1bf3b79
commit 6769ac13a2
No known key found for this signature in database
GPG key ID: 49BFFEEFD4C3ED53

View file

@ -69,7 +69,7 @@ cache:
script: script:
- bash autogen.sh - bash autogen.sh
- CC=$COMPILER CFLAGS="-Wno-unused-value -Werror" ./configure --with-shared-sqlite --with-assert=hard --enable-warnings - CC=$COMPILER CFLAGS="-Wno-unused-value -Wno-unused-parameter -Werror" ./configure --with-shared-sqlite --with-assert=hard --enable-warnings
- make -j4 - make -j4
- "if [ ${TRAVIS_OS_NAME} != 'osx' ]; then make check; fi" - "if [ ${TRAVIS_OS_NAME} != 'osx' ]; then make check; fi"
- make install - make install