examples: use YYLOCATION_PRINT

* examples/c/bistromathic/parse.y, examples/c/glr/c++-types.y,
* examples/c/lexcalc/parse.y: Don't use the private internal detail
`YY_LOCATION_PRINT`, use `YYLOCATION_PRINT`.
This commit is contained in:
Akim Demaille
2021-02-03 08:35:47 +01:00
parent c80b404dfa
commit e0ab5c324a
3 changed files with 8 additions and 8 deletions

View File

@@ -120,7 +120,7 @@ exp:
void yyerror (YYLTYPE *loc, const char *msg)
{
YY_LOCATION_PRINT (stderr, *loc);
YYLOCATION_PRINT (stderr, loc);
fprintf (stderr, ": %s\n", msg);
}