Loading...
Searching...
No Matches
Go to the documentation of this file.
19#ifndef LEX_NO_REENTRANT
20#ifndef LEX_NO_INPUT_FILENAME
21#define YY_FATAL_ERROR(msg) \
23 QCString msg1 = msg; \
24 msg1 += "\n lexical analyzer: "; \
25 msg1 += getLexerFILE(); \
26 if (!static_cast<yyguts_t*>(yyscanner)->yyextra_r->fileName.isEmpty()) \
29 msg1 += static_cast<yyguts_t*>(yyscanner)->yyextra_r->fileName; \
33 yy_fatal_error( qPrint(msg1) , yyscanner); \
36#define YY_FATAL_ERROR(msg) \
38 QCString msg1 = msg; \
39 msg1 += "\n lexical analyzer: "; \
40 msg1 += getLexerFILE(); \
42 yy_fatal_error( qPrint(msg1) , yyscanner); \
46#define YY_FATAL_ERROR(msg) \
48 QCString msg1 = msg; \
49 msg1 += "\n lexical analyzer: "; \
50 msg1 += getLexerFILE(); \
52 yy_fatal_error( qPrint(msg1)); \