From dfd58762a242cf49bfc2f92dedd2c4087c0e37eb Mon Sep 17 00:00:00 2001 From: Adam Wulkiewicz Date: Mon, 2 Jun 2014 21:46:40 +0200 Subject: [PATCH] Enable test for unused typedefs only for GCC 4.8 --- test/Jamfile.v2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 88947a6..cf422a0 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -37,7 +37,8 @@ test-suite "core" [ compile-fail explicit_operator_bool_compile_fail_delete.cpp ] [ compile-fail explicit_operator_bool_compile_fail_shift.cpp ] - [ compile ignore_unused_test.cpp : gcc:"-Wunused-variable -Wunused-local-typedefs -Werror" + [ compile ignore_unused_test.cpp : gcc-4.8:"-Wunused-variable -Wunused-local-typedefs -Werror" + gcc:"-Wunused-variable -Werror" clang:"-Wunused-variable -Werror" msvc:"/we4100 /we4101" ] ;