Helper to compose a string part from a unicode character */
| 337 | |
| 338 | /* Helper to compose a string part from a unicode character */ |
| 339 | static void ComposePart(StringBuilder &builder, char32_t c) |
| 340 | { |
| 341 | builder.PutUtf8(c); |
| 342 | } |
| 343 | |
| 344 | /* Helper to compose a string part from a string. */ |
| 345 | static void ComposePart(StringBuilder &builder, const std::string &value) |