[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

@@ -29,7 +29,7 @@
struct function_cmd_opts_t {
bool print_help = false;
bool shadow_scope = true;
wcstring description = L"";
wcstring description;
std::vector<event_description_t> events;
wcstring_list_t named_arguments;
wcstring_list_t inherit_vars;