Added AI_WONT_RETURN and AI_WONT_RETURN_SUFFIX to DOMError.

pull/66/head
Sherief Farouk 2013-08-04 10:11:02 -04:00
parent 32b694d4f6
commit ace5b763c3
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ namespace Util {
/* DOM/Parse error reporting - does not return */ /* DOM/Parse error reporting - does not return */
void DOMError(const std::string& message, const Token& token); AI_WONT_RETURN void DOMError(const std::string& message, const Token& token) AI_WONT_RETURN_SUFFIX;
void DOMError(const std::string& message, const Element* element = NULL); AI_WONT_RETURN void DOMError(const std::string& message, const Element* element = NULL) AI_WONT_RETURN_SUFFIX;
// does return // does return
void DOMWarning(const std::string& message, const Token& token); void DOMWarning(const std::string& message, const Token& token);