| 636 | } |
| 637 | |
| 638 | static void formatString(StringBuffer& buffer, StringId id) |
| 639 | { |
| 640 | auto args = FormatArgumentsView{}; |
| 641 | formatStringImpl(buffer, id, args); |
| 642 | } |
| 643 | |
| 644 | // TODO: Remove unsafe variant. |
| 645 | char* formatString(char* buffer, StringId id) |
no test coverage detected