Return PARSE_OK when the result is successful.
| 60 | |
| 61 | // Return PARSE_OK when the result is successful. |
| 62 | ParseError error() const { return _err; } |
| 63 | const char* error_str() const |
| 64 | { return _user_desc ? _user_desc : ParseErrorToString(_err); } |
| 65 | bool is_ok() const { return error() == PARSE_OK; } |
no outgoing calls
no test coverage detected