| 579 | } |
| 580 | |
| 581 | static void StringStripLeft(FString* self, const FString& junk) |
| 582 | { |
| 583 | if (junk.IsNotEmpty()) self->StripLeft(junk); |
| 584 | else self->StripLeft(); |
| 585 | } |
| 586 | |
| 587 | DEFINE_ACTION_FUNCTION_NATIVE(FStringStruct, StripLeft, StringStripLeft) |
| 588 | { |
no test coverage detected