Fixed test failing for gcc

This commit is contained in:
Mathieu Champlon 2018-04-01 12:20:00 +02:00 committed by Mathieu Champlon
parent 4455222a62
commit 20e7d50568
2 changed files with 4 additions and 4 deletions

View file

@ -23,7 +23,7 @@ namespace
BOOST_AUTO_TEST_CASE( mock_signature_generates_signature )
{
BOOST_MPL_ASSERT((
boost::is_same< void(), MOCK_SIGNATURE( method_1 ) > ));
boost::is_same< void(), MOCK_SIGNATURE(method_1) > ));
BOOST_MPL_ASSERT((
boost::is_same< float( int ), MOCK_SIGNATURE( method_2 ) > ));
boost::is_same< float( int ), MOCK_SIGNATURE(method_2) > ));
}