Helper to call FixSCCEncoded and return the result in a new string. */
| 329 | |
| 330 | /* Helper to call FixSCCEncoded and return the result in a new string. */ |
| 331 | static std::string FixSCCEncodedWrapper(const std::string &str, bool fix_code) |
| 332 | { |
| 333 | std::string result = str; |
| 334 | FixSCCEncoded(result, fix_code); |
| 335 | return result; |
| 336 | } |
| 337 | |
| 338 | /* Helper to compose a string part from a unicode character */ |
| 339 | static void ComposePart(StringBuilder &builder, char32_t c) |
no test coverage detected