Skip to content

Commit

Permalink
Reformat code
Browse files Browse the repository at this point in the history
  • Loading branch information
slonopotamus committed Nov 15, 2024
1 parent cc7c9be commit d3f6e81
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Source/UEST/Private/ScopedGame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,17 @@ FScopedGameInstance::~FScopedGameInstance()
struct FGPlayInEditorIDGuard final : UE::Core::Private::FPlayInEditorLoadingScope
{
explicit FGPlayInEditorIDGuard(const int32 PlayInEditorID)
: FPlayInEditorLoadingScope(PlayInEditorID)
{}
: FPlayInEditorLoadingScope(PlayInEditorID)
{
}
};
#else
struct FGPlayInEditorIDGuard final : TGuardValue<FPlayInEditorID, int32>
{
explicit FGPlayInEditorIDGuard(const int32 PlayInEditorID)
: TGuardValue(GPlayInEditorID, PlayInEditorID)
{}
: TGuardValue(GPlayInEditorID, PlayInEditorID)
{
}
};
#endif

Expand Down

0 comments on commit d3f6e81

Please sign in to comment.