From Joerg Mayer: mark possibly-unused arguments as unused.

svn path=/trunk/; revision=5388
This commit is contained in:
Guy Harris 2002-05-04 10:19:20 +00:00
parent c942bebb4c
commit 6744433452
1 changed files with 4 additions and 4 deletions

View File

@ -422,10 +422,10 @@ static void yy_parse_failed(
** The following code executes when a syntax error first occurs.
*/
static void yy_syntax_error(
yyParser *yypParser, /* The parser */
int yymajor, /* The major type of the error token */
yyParser *yypParser _U_, /* The parser */
int yymajor _U_, /* The major type of the error token */
YYMINORTYPE yyminor /* The minor type of the error token */
ParseANSIARGDECL /* Extra arguments (if any) */
ParseANSIARGDECL _U_ /* Extra arguments (if any) */
){
#define TOKEN (yyminor.yy0)
%%
@ -436,7 +436,7 @@ static void yy_syntax_error(
*/
static void yy_accept(
yyParser *yypParser /* The parser */
ParseANSIARGDECL /* Extra arguments (if any) */
ParseANSIARGDECL _U_ /* Extra arguments (if any) */
){
#ifndef NDEBUG
if( yyTraceFILE ){