Commit 4bafd628 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #2782 from cremno/define-yydebug-macro-conditionally

define YYDEBUG macro conditionally
parents d9e37bd7 3cd80a52
......@@ -6,8 +6,9 @@
%{
#undef PARSER_DEBUG
#define YYDEBUG 1
#ifdef PARSER_DEBUG
# define YYDEBUG 1
#endif
#define YYERROR_VERBOSE 1
/*
* Force yacc to use our memory management. This is a little evil because
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment