Constructs parse error
| 78 | |
| 79 | //! Constructs parse error |
| 80 | parse_error(const char *what_, void *where_) |
| 81 | : m_what(what_) |
| 82 | , m_where(where_) |
| 83 | { |
| 84 | } |
| 85 | |
| 86 | //! Gets human readable description of error. |
| 87 | //! \return Pointer to null terminated description of the error. |
nothing calls this directly
no outgoing calls
no test coverage detected