add -Wno-maybe-uninitialized to Travis autotools test

This commit is contained in:
Zeno Rogue 2019-09-13 20:08:26 +02:00
parent 44f42f7681
commit d3783a2ebe
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ script:
# Build hyperrogue.
if [[ "$TRAVIS_BUILD_SYSTEM" == "autotools" ]]; then
autoreconf -vi
./configure CXXFLAGS="-Wall -Werror"
./configure CXXFLAGS="-Wall -Werror -Wno-maybe-uninitialized"
make
elif [[ "$TRAVIS_BUILD_SYSTEM" == "Makefile" ]]; then
make -f Makefile.simple CXX="${HYPERROGUE_CXX-g++}"