Skip to content

Commit

Permalink
Fix UE4 compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
SRombautsU committed Aug 26, 2022
1 parent 23995fb commit ff25b6f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -147,7 +147,7 @@ TSharedRef<FPlasticSourceControlState, ESPMode::ThreadSafe> FPlasticSourceContro
else
{
// cache an unknown state for this item
TSharedRef<FPlasticSourceControlState, ESPMode::ThreadSafe> NewState = MakeShared<FPlasticSourceControlState>(FString(InFilename));
TSharedRef<FPlasticSourceControlState, ESPMode::ThreadSafe> NewState = MakeShareable(new FPlasticSourceControlState(FString(InFilename)));
StateCache.Add(InFilename, NewState);
return NewState;
}
Expand Down

0 comments on commit ff25b6f

Please sign in to comment.