summaryrefslogtreecommitdiffstats
path: root/src/constexp.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-09-05 12:04:14 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-09-05 12:04:14 (GMT)
commitaca16ea3b4e4beef9bf067d0b532dfa3802f7a3d (patch)
tree9c040ab60c4d6f7c1bd3503abb1b2f6d219d86f2 /src/constexp.l
parent98cc801013b16d827d91567998ead7b24fd78b6d (diff)
downloadDoxygen-aca16ea3b4e4beef9bf067d0b532dfa3802f7a3d.zip
Doxygen-aca16ea3b4e4beef9bf067d0b532dfa3802f7a3d.tar.gz
Doxygen-aca16ea3b4e4beef9bf067d0b532dfa3802f7a3d.tar.bz2
Consistent way to show scanner state
Create a consistent way to display the state mnemonics of the different scanners (analogous to the fortranscanner.l) Use an automatic procedure to generate the routine with the translation of the states to a string.
Diffstat (limited to 'src/constexp.l')
-rw-r--r--src/constexp.l2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/constexp.l b/src/constexp.l
index c9b984a..b6b3c5c 100644
--- a/src/constexp.l
+++ b/src/constexp.l
@@ -32,6 +32,7 @@
#define YY_NO_UNISTD_H 1
+static const char *stateToString(int state);
static int yyread(char *buf,int max_size,yyscan_t yyscanner);
#undef YY_INPUT
@@ -139,3 +140,4 @@ bool parseconstexp(const char *fileName,int lineNr,const QCString &s)
extern "C" {
int constexpYYwrap(yyscan_t yyscanner) { return 1; }
}
+#include "constexp.l.h"