From b9c73e191b70eac5566f068c715f416211c9bc1e Mon Sep 17 00:00:00 2001 From: "James E. King III" Date: Tue, 19 Feb 2019 07:07:08 -0500 Subject: [PATCH] ignore unused variable in test (fix matrix warning) --- test/usage_fail.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/usage_fail.cpp b/test/usage_fail.cpp index 29796b9..39b1060 100644 --- a/test/usage_fail.cpp +++ b/test/usage_fail.cpp @@ -3,6 +3,7 @@ // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include +#include template struct StringInitializable @@ -11,6 +12,7 @@ struct StringInitializable BOOST_CONCEPT_USAGE(StringInitializable) { T x = "foo"; + boost::ignore_unused(x); } };