[clang-tidy] Fix inconsistent declarations

Found with readability-inconsistent-declaration-parameter-name

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2019-11-18 16:54:36 -08:00
committed by ridiculousfish
parent 435556001e
commit 5ca80a61e3
28 changed files with 59 additions and 59 deletions

View File

@@ -385,9 +385,9 @@ class parse_ll_t {
bool top_node_handle_terminal_types(const parse_token_t &token);
void parse_error_unexpected_token(const wchar_t *expected, parse_token_t token);
void parse_error(parse_token_t token, parse_error_code_t code, const wchar_t *format, ...);
void parse_error(parse_token_t token, parse_error_code_t code, const wchar_t *fmt, ...);
void parse_error_at_location(size_t source_start, size_t source_length, size_t error_location,
parse_error_code_t code, const wchar_t *format, ...);
parse_error_code_t code, const wchar_t *fmt, ...);
void parse_error_failed_production(struct parse_stack_element_t &elem, parse_token_t token);
void parse_error_unbalancing_token(parse_token_t token);