| 287 | } |
| 288 | |
| 289 | static String Format_T2( |
| 290 | const void* ref1, int typeID1, |
| 291 | const void* ref2, int typeID2 |
| 292 | ) |
| 293 | { |
| 294 | const void* args[] = { ref1, ref2 }; |
| 295 | const int types[] = { typeID1, typeID2 }; |
| 296 | return FormatBase(args, types, std::size(args)); |
| 297 | } |
| 298 | |
| 299 | static String Format_T3( |
| 300 | const void* ref1, int typeID1, |
nothing calls this directly
no test coverage detected