From 8141a7836fb22d1c19f738549e404263c5639f6c Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Thu, 23 Nov 2017 16:58:43 +0000 Subject: [PATCH] Inline shouldDebugBreak() --- include/internal/catch_assertionhandler.cpp | 3 --- include/internal/catch_assertionhandler.h | 3 ++- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/include/internal/catch_assertionhandler.cpp b/include/internal/catch_assertionhandler.cpp index 60f97617..8aa7573d 100644 --- a/include/internal/catch_assertionhandler.cpp +++ b/include/internal/catch_assertionhandler.cpp @@ -116,9 +116,6 @@ namespace Catch { return getCurrentContext().getConfig()->allowThrows(); } - auto AssertionHandler::shouldDebugBreak() const -> bool { - return m_shouldDebugBreak; - } void AssertionHandler::reactWithDebugBreak() const { if (m_shouldDebugBreak) { /////////////////////////////////////////////////////////////////// diff --git a/include/internal/catch_assertionhandler.h b/include/internal/catch_assertionhandler.h index a800af5c..7903cefe 100644 --- a/include/internal/catch_assertionhandler.h +++ b/include/internal/catch_assertionhandler.h @@ -57,7 +57,8 @@ namespace Catch { void handle( ResultWas::OfType resultType, ITransientExpression const* expr, bool negated ); void handle( AssertionResultData const& resultData, ITransientExpression const* expr ); - auto shouldDebugBreak() const -> bool; + auto shouldDebugBreak() const -> bool { return m_shouldDebugBreak; } + auto allowThrows() const -> bool; void reactWithDebugBreak() const; void reactWithoutDebugBreak() const;