ignore unused variable in test (fix matrix warning)

This commit is contained in:
James E. King III
2019-02-19 07:07:08 -05:00
parent bc2482b38f
commit b9c73e191b

View File

@@ -3,6 +3,7 @@
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#include <boost/concept/usage.hpp>
#include <boost/core/ignore_unused.hpp>
template <class T>
struct StringInitializable
@@ -11,6 +12,7 @@ struct StringInitializable
BOOST_CONCEPT_USAGE(StringInitializable)
{
T x = "foo";
boost::ignore_unused(x);
}
};