| 42 | utfchar32_t cp; |
| 43 | public: |
| 44 | invalid_code_point(utfchar32_t codepoint) : cp(codepoint) {} |
| 45 | virtual const char* what() const UTF_CPP_NOEXCEPT UTF_CPP_OVERRIDE { return "Invalid code point"; } |
| 46 | utfchar32_t code_point() const {return cp;} |
| 47 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected