We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3740d2 commit 3cb312dCopy full SHA for 3cb312d
src/interfaces/ecpg/preproc/output.c
@@ -87,7 +87,11 @@ char *
87
hashline_number(void)
88
{
89
/* do not print line numbers if we are in debug mode */
90
- if (input_filename && !yydebug)
+ if (input_filename
91
+#ifdef YYDEBUG
92
+ && !yydebug
93
+#endif
94
+ )
95
96
char *line = mm_alloc(strlen("\n#line %d \"%s\"\n") + 21 + strlen(input_filename));
97
0 commit comments