| 308 | } |
| 309 | |
| 310 | static String Format_T4( |
| 311 | const void* ref1, int typeID1, |
| 312 | const void* ref2, int typeID2, |
| 313 | const void* ref3, int typeID3, |
| 314 | const void* ref4, int typeID4 |
| 315 | ) |
| 316 | { |
| 317 | const void* args[] = { ref1, ref2, ref3, ref4 }; |
| 318 | const int types[] = { typeID1, typeID2, typeID3, typeID4 }; |
| 319 | return FormatBase(args, types, std::size(args)); |
| 320 | } |
| 321 | |
| 322 | static String Format_T5( |
| 323 | const void* ref1, int typeID1, |
nothing calls this directly
no test coverage detected