From 2800adba2518da903dca9ca2766a54772eabb00c Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Fri, 24 Nov 2017 18:46:18 +0000 Subject: [PATCH] Qualified handleExceptionMatchExpr in Catch:: (was picking it up by ADL before - no need to rely on that!) --- include/internal/catch_capture.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/internal/catch_capture.hpp b/include/internal/catch_capture.hpp index 69e47ed1..44368e5a 100644 --- a/include/internal/catch_capture.hpp +++ b/include/internal/catch_capture.hpp @@ -135,7 +135,7 @@ catchAssertionHandler.handle( Catch::ResultWas::DidntThrowException ); \ } \ catch( ... ) { \ - handleExceptionMatchExpr( catchAssertionHandler, matcher, #matcher ); \ + Catch::handleExceptionMatchExpr( catchAssertionHandler, matcher, #matcher ); \ } \ else \ catchAssertionHandler.handle( Catch::ResultWas::Ok ); \