mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-27 00:21:15 -03:00
[clang-tidy] remove redundant string initialization
Found with readability-redundant-string-init Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
committed by
Fabian Homborg
parent
473a5250ae
commit
68467eeca7
@@ -51,7 +51,7 @@ struct argparse_cmd_opts_t {
|
||||
size_t min_args = 0;
|
||||
size_t max_args = SIZE_MAX;
|
||||
wchar_t implicit_int_flag = L'\0';
|
||||
wcstring name = L"";
|
||||
wcstring name;
|
||||
wcstring_list_t raw_exclusive_flags;
|
||||
wcstring_list_t argv;
|
||||
std::unordered_map<wchar_t, option_spec_ref_t> options;
|
||||
|
||||
Reference in New Issue
Block a user