[clang-tidy] Fix wrong declaration

Found with readability-inconsistent-declaration-parameter-name
This commit is contained in:
Rosen Penev 2019-12-21 13:24:08 -08:00
parent 9e42b0100a
commit 668f73c0d6
No known key found for this signature in database
GPG key ID: 36D31CFA845F0E3B

View file

@ -123,7 +123,7 @@ class parse_execution_context_t {
// Determines the list of redirections for a node. Returns none() on failure, for example, an
// invalid fd.
bool determine_redirections(tnode_t<grammar::arguments_or_redirections_list> node,
redirection_spec_list_t *out_redirs);
redirection_spec_list_t *out_redirections);
eval_result_t run_1_job(tnode_t<grammar::job> job, const block_t *associated_block);
eval_result_t run_job_conjunction(tnode_t<grammar::job_conjunction> job_expr,