| 593 | } |
| 594 | |
| 595 | static void StringStripLeftRight(FString* self, const FString& junk) |
| 596 | { |
| 597 | if (junk.IsNotEmpty()) self->StripLeftRight(junk); |
| 598 | else self->StripLeftRight(); |
| 599 | } |
| 600 | |
| 601 | DEFINE_ACTION_FUNCTION_NATIVE(FStringStruct, StripLeftRight, StringStripLeftRight) |
| 602 | { |
no test coverage detected