| 86 | // signal tokenization error, this is always unrecoverable. Throws DeadlyImportError. |
| 87 | AI_WONT_RETURN void TokenizeError(const std::string& message, unsigned int line, unsigned int column) AI_WONT_RETURN_SUFFIX; |
| 88 | AI_WONT_RETURN void TokenizeError(const std::string& message, unsigned int line, unsigned int column) |
| 89 | { |
| 90 | throw DeadlyImportError("FBX-Tokenize", Util::GetLineAndColumnText(line,column), message); |
| 91 | } |
| 92 | |
| 93 | |
| 94 | // process a potential data token up to 'cur', adding it to 'output_tokens'. |
no test coverage detected