break;
case T_ArrayRef:
{
- ArrayRef *ar = (ArrayRef *) node;;
+ ArrayRef *ar = (ArrayRef *) node;
/* Assignment should not be in restrictions. */
if (ar->refassgnexpr != NULL)
r->relname = strVal(lsecond(names));
break;
case 3:
- r->catalogname = strVal(linitial(names));;
+ r->catalogname = strVal(linitial(names));
r->schemaname = strVal(lsecond(names));
r->relname = strVal(lthird(names));
break;
lex_expect(JsonParseContext ctx, JsonLexContext *lex, JsonTokenType token)
{
if (!lex_accept(lex, token, NULL))
- report_parse_error(ctx, lex);;
+ report_parse_error(ctx, lex);
}
/* chars to consider as part of an alphanumeric token */
if (bytes == 2)
{
wch[0] = 0xC0 | ((cvalue >> 6) & 0x1F);
- wch[1] = 0x80 | (cvalue & 0x3F);;
+ wch[1] = 0x80 | (cvalue & 0x3F);
}
else if (bytes == 3)
{