From e2abb0da756823ee352905bf440be2cc9a4f296b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Andra=C5=A1ec?= Date: Mon, 15 May 2023 09:57:08 +0000 Subject: [PATCH] Fix import of `User` & `Breadcrumb` (#3017) Import with "" instead of <> --- CHANGELOG.md | 4 ++++ .../Sentry/include/HybridPublic/SentryBreadcrumb+Private.h | 2 +- Sources/Sentry/include/HybridPublic/SentryUser+Private.h | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e25d699743d..5cac839942b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ - Add `sent_at` to envelope header (#2859) +### Fixes + +- Fix import of `User` & `Breadcrumb` (#3017) + ## 8.7.0 ### Features diff --git a/Sources/Sentry/include/HybridPublic/SentryBreadcrumb+Private.h b/Sources/Sentry/include/HybridPublic/SentryBreadcrumb+Private.h index e369b1b22e1..db805b20d1c 100644 --- a/Sources/Sentry/include/HybridPublic/SentryBreadcrumb+Private.h +++ b/Sources/Sentry/include/HybridPublic/SentryBreadcrumb+Private.h @@ -1,6 +1,6 @@ +#import "SentryBreadcrumb.h" #import "SentryDefines.h" #import "SentrySerializable.h" -#import @interface SentryBreadcrumb (Private) diff --git a/Sources/Sentry/include/HybridPublic/SentryUser+Private.h b/Sources/Sentry/include/HybridPublic/SentryUser+Private.h index db192bfcb92..8c6e1076697 100644 --- a/Sources/Sentry/include/HybridPublic/SentryUser+Private.h +++ b/Sources/Sentry/include/HybridPublic/SentryUser+Private.h @@ -1,6 +1,6 @@ #import "SentryDefines.h" #import "SentrySerializable.h" -#import +#import "SentryUser.h" @interface SentryUser (Private)