From 4e90f910dc83e38295a171b1345c4555c3024676 Mon Sep 17 00:00:00 2001 From: ptc-tgamper Date: Wed, 18 Dec 2019 10:19:10 +0100 Subject: [PATCH] catch_console_colour.cpp - adjust useColourOnPlatform for iOS --- include/internal/catch_console_colour.cpp | 2 +- include/internal/catch_debugger.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/internal/catch_console_colour.cpp b/include/internal/catch_console_colour.cpp index 1c4799f8..f3c2204f 100644 --- a/include/internal/catch_console_colour.cpp +++ b/include/internal/catch_console_colour.cpp @@ -167,7 +167,7 @@ namespace { bool useColourOnPlatform() { return -#ifdef CATCH_PLATFORM_MAC +#if defined(CATCH_PLATFORM_MAC) || defined(CATCH_PLATFORM_IPHONE) !isDebuggerActive() && #endif #if !(defined(__DJGPP__) && defined(__STRICT_ANSI__)) diff --git a/include/internal/catch_debugger.cpp b/include/internal/catch_debugger.cpp index 9a218ff5..fc78c36e 100644 --- a/include/internal/catch_debugger.cpp +++ b/include/internal/catch_debugger.cpp @@ -12,7 +12,7 @@ #include "catch_stream.h" #include "catch_platform.h" -#if defined(CATCH_PLATFORM_MAC) || defined(CATCH_PLATFORM_IPHONE) +#if defined(CATCH_PLATFORM_MAC) || defined(CATCH_PLATFORM_IPHONE) # include # include