| 50 | utfchar8_t u8; |
| 51 | public: |
| 52 | invalid_utf8 (utfchar8_t u) : u8(u) {} |
| 53 | invalid_utf8 (char c) : u8(static_cast<utfchar8_t>(c)) {} |
| 54 | virtual const char* what() const UTF_CPP_NOEXCEPT UTF_CPP_OVERRIDE { return "Invalid UTF-8"; } |
| 55 | utfchar8_t utf8_octet() const {return u8;} |
nothing calls this directly
no outgoing calls
no test coverage detected