| 320 | } |
| 321 | |
| 322 | static String Format_T5( |
| 323 | const void* ref1, int typeID1, |
| 324 | const void* ref2, int typeID2, |
| 325 | const void* ref3, int typeID3, |
| 326 | const void* ref4, int typeID4, |
| 327 | const void* ref5, int typeID5 |
| 328 | ) |
| 329 | { |
| 330 | const void* args[] = { ref1, ref2, ref3, ref4, ref5 }; |
| 331 | const int types[] = { typeID1, typeID2, typeID3, typeID4, typeID5 }; |
| 332 | return FormatBase(args, types, std::size(args)); |
| 333 | } |
| 334 | |
| 335 | static String Format_T6( |
| 336 | const void* ref1, int typeID1, |
nothing calls this directly
no test coverage detected