Skip to content

Commit

Permalink
Fix header location
Browse files Browse the repository at this point in the history
  • Loading branch information
tustanivsky committed Oct 10, 2024
1 parent 611496d commit 5bb1b01
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#include "SentryCrashReporter.h"
#include "SentryCrashContext.h"

#include "SentryUserDesktop.h"
#include "Desktop/SentryUserDesktop.h"

#include "SentryDefines.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ SentryBreadcrumbDesktop::SentryBreadcrumbDesktop(sentry_value_t breadcrumb)

SentryBreadcrumbDesktop::~SentryBreadcrumbDesktop()
{
// Put custom destructor logic here if needed
// Put custom destructor logic here if needed
}

sentry_value_t SentryBreadcrumbDesktop::GetNativeObject()
Expand Down Expand Up @@ -66,7 +66,7 @@ void SentryBreadcrumbDesktop::SetData(const TMap<FString, FString>& data)

TMap<FString, FString> SentryBreadcrumbDesktop::GetData() const
{
sentry_value_t data = sentry_value_get_by_key(BreadcrumbDesktop, "data");
sentry_value_t data = sentry_value_get_by_key(BreadcrumbDesktop, "data");
return SentryConvertorsDesktop::StringMapToUnreal(data);
}

Expand Down
4 changes: 2 additions & 2 deletions plugin-dev/Source/Sentry/Private/SentrySubsystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
#include "SentryDefines.h"
#include "SentryEvent.h"
#include "SentryId.h"
#include "SentryUser.h"
#include "SentryUserFeedback.h"
#include "SentryBeforeSendHandler.h"
#include "SentryTraceSampler.h"
#include "SentryTransaction.h"
#include "SentryTransactionContext.h"
#include "SentryOutputDevice.h"
#include "SentryOutputDeviceError.h"

#include "CoreGlobals.h"
#include "SentryOutputDeviceError.h"
#include "SentryUser.h"
#include "Engine/World.h"
#include "Misc/EngineVersion.h"
#include "Misc/CoreDelegates.h"
Expand Down

0 comments on commit 5bb1b01

Please sign in to comment.