From 016455ca4091edea67d63fd1e8b0751a36443325 Mon Sep 17 00:00:00 2001 From: Jeppe Frandsen Date: Sun, 27 May 2018 13:50:33 +0200 Subject: [PATCH] Corrected catch.hpp --- include/turtle/catch.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/turtle/catch.hpp b/include/turtle/catch.hpp index 1736dde..dd9c8ad 100644 --- a/include/turtle/catch.hpp +++ b/include/turtle/catch.hpp @@ -22,7 +22,7 @@ struct catch_mock_error_policy template< typename 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 ); FAIL_CHECK( message << " in: " << file << ":" << line );