From 50bbebba38666fd2e317e7d3c769bc732261af15 Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Tue, 5 Dec 2023 13:59:47 +0100 Subject: [PATCH] ref: Add comment for CrashExceptionApplication (#3480) Add a comment to explain why we need SentryCrashExceptionApplication. --- Sources/Sentry/Public/SentryCrashExceptionApplication.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/Sentry/Public/SentryCrashExceptionApplication.h b/Sources/Sentry/Public/SentryCrashExceptionApplication.h index c70ecaf87c6..44531561bc4 100644 --- a/Sources/Sentry/Public/SentryCrashExceptionApplication.h +++ b/Sources/Sentry/Public/SentryCrashExceptionApplication.h @@ -4,6 +4,8 @@ // this the SDK breaks for MacOS. #import +// Required for capturing uncaught exceptions in macOS. For more info see +// https://docs.sentry.io/platforms/apple/guides/macos/usage/#capturing-uncaught-exceptions-in-macos #if TARGET_OS_OSX # import @interface SentryCrashExceptionApplication : NSApplication