| 552 | |
| 553 | template<typename OutputStream> |
| 554 | static void EncodeUnsafe(OutputStream& os, unsigned codepoint) { |
| 555 | RAPIDJSON_ASSERT(codepoint <= 0x7F); |
| 556 | PutUnsafe(os, static_cast<Ch>(codepoint & 0xFF)); |
| 557 | } |
| 558 | |
| 559 | template <typename InputStream> |
| 560 | static bool Decode(InputStream& is, unsigned* codepoint) { |
nothing calls this directly
no test coverage detected