mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-28 20:55:11 +00:00
[clang-tidy] Fix wrong declaration
Found with readability-inconsistent-declaration-parameter-name
This commit is contained in:
parent
9e42b0100a
commit
668f73c0d6
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class parse_execution_context_t {
|
||||||
// Determines the list of redirections for a node. Returns none() on failure, for example, an
|
// Determines the list of redirections for a node. Returns none() on failure, for example, an
|
||||||
// invalid fd.
|
// invalid fd.
|
||||||
bool determine_redirections(tnode_t<grammar::arguments_or_redirections_list> node,
|
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_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,
|
eval_result_t run_job_conjunction(tnode_t<grammar::job_conjunction> job_expr,
|
||||||
|
|
Loading…
Reference in a new issue