summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorptc-tgamper <ptc-tgamper@github.com>2019-12-18 10:14:32 +0100
committerMartin Hořeňovský <martin.horenovsky@gmail.com>2019-12-23 21:26:13 +0100
commit0c59cc83cf4e423cfecf3e1170f07c45b56cf040 (patch)
tree6331e19373e26b9090a7d4de59f448c0d462599e
parente4004e0adb77d897fa4b1446a7f3d3c6bce2016f (diff)
downloadcatch2-0c59cc83cf4e423cfecf3e1170f07c45b56cf040.tar.gz
catch_debugger.cpp - debugger detection is identical on Mac OS X and iOS
-rw-r--r--include/internal/catch_debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/internal/catch_debugger.cpp b/include/internal/catch_debugger.cpp
index f04900a4..9a218ff5 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"
-#ifdef CATCH_PLATFORM_MAC
+#if defined(CATCH_PLATFORM_MAC) || defined(CATCH_PLATFORM_IPHONE)
# include <assert.h>
# include <stdbool.h>