Skip to content

Commit 40b0774

Browse files
committed
Fix lint errors
1 parent d914c5a commit 40b0774

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugin-dev/Source/Sentry/Private/GenericPlatform/GenericPlatformSentrySubsystem.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ TSharedPtr<ISentryId> FGenericPlatformSentrySubsystem::CaptureMessageWithScope(c
401401
sentry_value_set_stacktrace(nativeEvent, nullptr, 0);
402402
}
403403

404-
sentry_scope_t *scope = sentry_local_scope_new();
404+
sentry_scope_t* scope = sentry_local_scope_new();
405405

406406
TSharedPtr<FGenericPlatformSentryScope> NewLocalScope = MakeShareable(new FGenericPlatformSentryScope(scope));
407407
onConfigureScope.ExecuteIfBound(NewLocalScope);
@@ -436,7 +436,7 @@ TSharedPtr<ISentryId> FGenericPlatformSentrySubsystem::CaptureEventWithScope(TSh
436436
sentry_value_set_stacktrace(nativeEvent, nullptr, 0);
437437
}
438438

439-
sentry_scope_t *scope = sentry_local_scope_new();
439+
sentry_scope_t* scope = sentry_local_scope_new();
440440

441441
TSharedPtr<FGenericPlatformSentryScope> NewLocalScope = MakeShareable(new FGenericPlatformSentryScope(scope));
442442
onScopeConfigure.ExecuteIfBound(NewLocalScope);

0 commit comments

Comments
 (0)