| 40 | } |
| 41 | |
| 42 | void ArrayOfIndices(TArray<int32>& OutArray, const int32 InNum) |
| 43 | { |
| 44 | { |
| 45 | const int32 _num_ = InNum; |
| 46 | OutArray.Reserve(_num_); |
| 47 | OutArray.SetNum(_num_); |
| 48 | } |
| 49 | for (int i = 0; i < InNum; i++) { OutArray[i] = i; } |
| 50 | } |
| 51 | |
| 52 | FName GetCompoundName(const FName A, const FName B) |
| 53 | { |
no test coverage detected