summaryrefslogtreecommitdiffstats
path: root/src/sqlcode.l
diff options
context:
space:
mode:
authorAdrian Negreanu <groleo@gmail.com>2019-05-22 11:51:51 (GMT)
committerAdrian Negreanu <groleo@gmail.com>2019-05-22 11:55:26 (GMT)
commit2c8eec16b0a0ce46f69af9f09b66c2475066bbe6 (patch)
tree339e5ecce9f588374532dbf8dfec5eaa83360d0a /src/sqlcode.l
parent5c9d812083af06c9e683c9ff2e32f5839066863c (diff)
downloadDoxygen-2c8eec16b0a0ce46f69af9f09b66c2475066bbe6.zip
Doxygen-2c8eec16b0a0ce46f69af9f09b66c2475066bbe6.tar.gz
Doxygen-2c8eec16b0a0ce46f69af9f09b66c2475066bbe6.tar.bz2
enable debug for re-entrant lexers
Diffstat (limited to 'src/sqlcode.l')
-rw-r--r--src/sqlcode.l5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sqlcode.l b/src/sqlcode.l
index d14bcfb..79393fd 100644
--- a/src/sqlcode.l
+++ b/src/sqlcode.l
@@ -380,6 +380,11 @@ void parseSqlCode(
sqlcodeYYlex_init_extra(&sqlcode_extra, &yyscanner);
struct yyguts_t *yyg = (struct yyguts_t*)yyscanner;
+
+#ifdef FLEX_DEBUG
+ yyset_debug(1,yyscanner);
+#endif
+
printlex(yy_flex_debug, TRUE, __FILE__, fd ? fd->fileName().data(): NULL);
yyextra->code = &od;