| 297 | } |
| 298 | |
| 299 | static String Format_T3( |
| 300 | const void* ref1, int typeID1, |
| 301 | const void* ref2, int typeID2, |
| 302 | const void* ref3, int typeID3 |
| 303 | ) |
| 304 | { |
| 305 | const void* args[] = { ref1, ref2, ref3 }; |
| 306 | const int types[] = { typeID1, typeID2, typeID3 }; |
| 307 | return FormatBase(args, types, std::size(args)); |
| 308 | } |
| 309 | |
| 310 | static String Format_T4( |
| 311 | const void* ref1, int typeID1, |
nothing calls this directly
no test coverage detected