Skip to content

Commit

Permalink
LeftChopInline
Browse files Browse the repository at this point in the history
  • Loading branch information
SRombautsU committed Oct 12, 2022
1 parent f9a8d66 commit 52a67e7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ bool FindRootDirectory(const FString& InPath, FString& OutWorkspaceRoot)
int32 Len = Str.Len();
while (Len && Str[Len - 1] == Char)
{
Str = Str.LeftChop(1);
Str.LeftChopInline(1);
Len = Str.Len();
}
};
Expand Down Expand Up @@ -1098,13 +1098,13 @@ class FPlasticMergeConflictParser
{
Filename = Temp.Left(WhitespaceIndex);
}
Temp = Temp.RightChop(WhitespaceIndex + 1);
Temp.RightChopInline(WhitespaceIndex + 1);
if (Temp.FindChar(TEXT(' '), WhitespaceIndex))
{
const FString Base = Temp.Left(WhitespaceIndex);
BaseChangeset = FCString::Atoi(*Base);
}
Temp = Temp.RightChop(WhitespaceIndex + 1);
Temp.RightChopInline(WhitespaceIndex + 1);
if (Temp.FindChar(TEXT(' '), WhitespaceIndex))
{
const FString Source = Temp.Left(WhitespaceIndex);
Expand Down

0 comments on commit 52a67e7

Please sign in to comment.