We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
skip_line
static Token *skip_line(Token *tok) { if (tok->at_bol) return tok; warn_tok(tok, "extra token"); while (tok->at_bol) tok = tok->next; return tok; }
while (tok->at_bol)should bewhile (!tok->at_bol)
while (tok->at_bol)
while (!tok->at_bol)
static Token *skip_line(Token *tok) { if (tok->at_bol) return tok; warn_tok(tok, "extra token"); while (!tok->at_bol) tok = tok->next; return tok; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
while (tok->at_bol)
should bewhile (!tok->at_bol)
The text was updated successfully, but these errors were encountered: