From d3783a2ebef029c4607573dcdc57e644556316f0 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 13 Sep 2019 20:08:26 +0200 Subject: [PATCH] add -Wno-maybe-uninitialized to Travis autotools test --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 89adcbb6..d39a0695 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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++}"