[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:
Rosen Penev
2020-04-02 19:43:34 -07:00
committed by Fabian Homborg
parent 473a5250ae
commit 68467eeca7
6 changed files with 7 additions and 6 deletions

View File

@@ -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;