| 72 | // signal parse error, this is always unrecoverable. Throws DeadlyImportError. |
| 73 | AI_WONT_RETURN void ParseError(const std::string& message, const Token& token) AI_WONT_RETURN_SUFFIX; |
| 74 | AI_WONT_RETURN void ParseError(const std::string& message, const Token& token) |
| 75 | { |
| 76 | throw DeadlyImportError("FBX-Parser", Util::GetTokenText(&token), message); |
| 77 | } |
| 78 | |
| 79 | // ------------------------------------------------------------------------------------------------ |
| 80 | AI_WONT_RETURN void ParseError(const std::string &message, const Element *element = nullptr) AI_WONT_RETURN_SUFFIX; |
no test coverage detected