ls: Explicitly initialize booleans to false
This commit is contained in:
parent
43f90c4f88
commit
61f969c60c
@ -8,8 +8,8 @@
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
StringView pathname;
|
||||
bool show_all;
|
||||
bool show_almost_all;
|
||||
bool show_all { false };
|
||||
bool show_almost_all { false };
|
||||
|
||||
ArgumentParser parser;
|
||||
parser.add_positional_argument(pathname, "directory"_sv, "/"_sv);
|
||||
|
Loading…
Reference in New Issue
Block a user