| 34 | } |
| 35 | |
| 36 | auto toHex(const char32_t character) |
| 37 | { |
| 38 | std::ostringstream stream; |
| 39 | stream << "[\\x" << std::uppercase << std::hex << std::uint32_t{character} << ']'; |
| 40 | return stream.str(); |
| 41 | } |
| 42 | } // namespace |
| 43 | |
| 44 | // Specialize StringMaker for alternative std::basic_string<T> specializations |