| 350 | /* Helper to compose a string from unicode or string parts. */ |
| 351 | template <typename... Args> |
| 352 | static std::string Compose(Args &&... args) |
| 353 | { |
| 354 | std::string result; |
| 355 | StringBuilder builder(result); |
| 356 | (ComposePart(builder, args), ...); |
| 357 | return result; |
| 358 | } |
| 359 | |
| 360 | TEST_CASE("FixSCCEncoded") |
| 361 | { |
no test coverage detected