mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 21:33:09 +00:00
reader: Make param const
const good! Fabian like const!
This commit is contained in:
parent
9f924f37fb
commit
01cd6385ff
1 changed files with 1 additions and 1 deletions
|
@ -2322,7 +2322,7 @@ static eval_res_t reader_run_command(parser_t &parser, const wcstring &cmd) {
|
|||
return eval_res;
|
||||
}
|
||||
|
||||
static parser_test_error_bits_t reader_shell_test(parser_t &parser, const wcstring &b) {
|
||||
static parser_test_error_bits_t reader_shell_test(const parser_t &parser, const wcstring &b) {
|
||||
wcstring bstr = b;
|
||||
|
||||
// Append a newline, to act as a statement terminator.
|
||||
|
|
Loading…
Reference in a new issue