+2004-01-13 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
+
+ * data/glr.c: Put casts on uses of YYREALLOC and YYMALLOC so that
+ resulting parsers are compilable with C++.
+
2003-12-23 Paul Eggert <eggert@twinsun.com>
* config/depcomp, config/install-sh: Sync with Automake 1.8.
{
yyset->yysize = 1;
yyset->yycapacity = 16;
- yyset->yystates = YYMALLOC (16 * sizeof yyset->yystates[0]);
+ yyset->yystates = (yyGLRState**) YYMALLOC (16 * sizeof yyset->yystates[0]);
yyset->yystates[0] = NULL;
}
yynerrs = 0;
yystack->yyspaceLeft = yysize;
yystack->yynextFree = yystack->yyitems =
- YYMALLOC (yysize * sizeof yystack->yynextFree[0]);
+ (yyGLRStackItem*) YYMALLOC (yysize * sizeof yystack->yynextFree[0]);
yystack->yysplitPoint = NULL;
yystack->yylastDeleted = NULL;
yyinitStateSet (&yystack->yytops);
{
yystack->yytops.yycapacity *= 2;
yystack->yytops.yystates =
- YYREALLOC (yystack->yytops.yystates,
- (yystack->yytops.yycapacity
- * sizeof yystack->yytops.yystates[0]));
+ (yyGLRState**) YYREALLOC (yystack->yytops.yystates,
+ (yystack->yytops.yycapacity
+ * sizeof yystack->yytops.yystates[0]));
}
yystack->yytops.yystates[yystack->yytops.yysize]
= yystack->yytops.yystates[yyk];
}
yysize += (sizeof ("syntax error, unexpected ")
+ strlen (yytokenName (*yytokenp)));
- yymsg = YYMALLOC (yysize);
+ yymsg = (char*) YYMALLOC (yysize);
if (yymsg != 0)
{
char* yyp = yymsg;