Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
denrase committed Nov 11, 2024
1 parent 13dcf28 commit a0870f6
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions Sources/Sentry/include/SentrySessionReplayIntegration.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
#import "SentryBaseIntegration.h"
#import "SentryDefines.h"
#if __has_include(<Sentry/SentryBaseIntegration.h>)
# import <Sentry/SentryBaseIntegration.h>
#else
# import "SentryBaseIntegration.h"
#endif

#if __has_include(<Sentry/SentryDefines.h>)
# import <Sentry/SentryDefines.h>
#else
# import "SentryDefines.h"
#endif

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN
Expand Down

0 comments on commit a0870f6

Please sign in to comment.