Merge pull request #46 from AudioStreamingPlatform/master

Corrected Catch compile issue
This commit is contained in:
Mathieu Champlon 2018-05-29 21:43:17 +02:00 committed by GitHub
commit e92f52821d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ struct catch_mock_error_policy
template< typename Context > template< typename Context >
static void fail( const char* message, const Context& context, static void fail( const char* message, const Context& context,
const char* file = "file://unknown-location", line = 0 ) const char* file = "file://unknown-location", int line = 0 )
{ {
CAPTURE( context ); CAPTURE( context );
FAIL_CHECK( message << " in: " << file << ":" << line ); FAIL_CHECK( message << " in: " << file << ":" << line );