From ed8c58d81357f0ef3f9e70c37094e3b786e64502 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Fri, 10 Jul 2020 20:21:51 +0200 Subject: [PATCH] Remove Boost.Typeof --- test/test_constraints.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/test_constraints.cpp b/test/test_constraints.cpp index f77d247..3350de7 100644 --- a/test/test_constraints.cpp +++ b/test/test_constraints.cpp @@ -8,7 +8,6 @@ #include #include -#include BOOST_AUTO_TEST_CASE( all_comparison_constraints_can_be_instanciated ) { @@ -48,7 +47,7 @@ BOOST_AUTO_TEST_CASE( equal_constraint ) BOOST_CHECK( ! mock::equal( std::string( "string" ) ).c_( "not string" ) ); { std::string s; - BOOST_AUTO( c, mock::equal( std::cref( s ) ) ); + auto c = mock::equal( std::cref( s ) ); s = "string"; BOOST_CHECK( c.c_( "string" ) ); }