| 438 | } |
| 439 | |
| 440 | void AppendStringWithArgsInPlace(std::string &result, StringID string, std::span<StringParameter> params) |
| 441 | { |
| 442 | StringParameters tmp_params{params}; |
| 443 | StringBuilder builder(result); |
| 444 | GetStringWithArgs(builder, string, tmp_params); |
| 445 | } |
| 446 | |
| 447 | /** |
| 448 | * Get a parsed string with most special stringcodes replaced by the string parameters. |
no test coverage detected