Removed two empty switch statements to silence an MSVC warning

svn-id: r39376
This commit is contained in:
Filippos Karapetis 2009-03-14 00:12:23 +00:00
parent b78001f7ca
commit 31c66b5931

View file

@ -811,11 +811,6 @@ yy_symbol_value_print (yyoutput, yytype, yyvaluep)
# else
YYUSE (yyoutput);
# endif
switch (yytype)
{
default:
break;
}
}
@ -1172,13 +1167,6 @@ yydestruct (yymsg, yytype, yyvaluep)
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);
switch (yytype)
{
default:
break;
}
}