提交 3cb312d8 编写于 作者: T Tom Lane

Fix broken non-YYDEBUG case.

上级 e3740d2c
......@@ -87,7 +87,11 @@ char *
hashline_number(void)
{
/* do not print line numbers if we are in debug mode */
if (input_filename && !yydebug)
if (input_filename
#ifdef YYDEBUG
&& !yydebug
#endif
)
{
char *line = mm_alloc(strlen("\n#line %d \"%s\"\n") + 21 + strlen(input_filename));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册