From a6da0827840437d10f982d7bff2df399e8dfdb0c Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 15 Apr 2018 22:13:03 +0100 Subject: [PATCH] Stop using -Werror So that there aren't any failures because of warnings in other modules. --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 644cb20..2457f46 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,11 +12,11 @@ matrix: include: - compiler: gcc env: | - USER_CONFIG="using gcc : : g++-4.8 -Werror ;" + USER_CONFIG="using gcc : : g++-4.8 ;" CXXSTD=03,11 - compiler: g++-7 env: | - USER_CONFIG="using gcc : : g++-7 -Werror ;" + USER_CONFIG="using gcc : : g++-7 ;" CXXSTD=11,14,17 addons: apt: @@ -26,11 +26,11 @@ matrix: - ubuntu-toolchain-r-test - compiler: clang env: | - USER_CONFIG="using clang : : clang++ -Werror ;" + USER_CONFIG="using clang : : clang++ ;" CXXSTD=03,11 - compiler: clang env: | - USER_CONFIG="using clang : : clang++ -Werror -D_HAS_AUTO_PTR_ETC=0 ;" + USER_CONFIG="using clang : : clang++ -D_HAS_AUTO_PTR_ETC=0 ;" CXXSTD=11 before_script: