Skip to content

Commit e58feb3

Browse files
committed
Fix missing function definition in FNullSentrySubsystem
1 parent 6f3a0e9 commit e58feb3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

plugin-dev/Source/Sentry/Private/Null/NullSentrySubsystem.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class FNullSentrySubsystem : public ISentrySubsystem
3737
virtual void GiveUserConsent() override {}
3838
virtual void RevokeUserConsent() override {}
3939
virtual EUserConsent GetUserConsent() const override { return EUserConsent::Unknown; }
40+
virtual bool IsUserConsentRequired() const override { return false; }
4041
virtual TSharedPtr<ISentryTransaction> StartTransaction(const FString& name, const FString& operation, bool bindToScope) override { return nullptr; }
4142
virtual TSharedPtr<ISentryTransaction> StartTransactionWithContext(TSharedPtr<ISentryTransactionContext> context, bool bindToScope) override { return nullptr; }
4243
virtual TSharedPtr<ISentryTransaction> StartTransactionWithContextAndTimestamp(TSharedPtr<ISentryTransactionContext> context, int64 timestamp, bool bindToScope) override { return nullptr; }

0 commit comments

Comments
 (0)