mirror of
https://github.com/gflags/gflags.git
synced 2025-04-04 13:05:03 +00:00
Remove fallthrough switch case
GCC gives an implicit-fallthrough warning (included in -Wextra). C++17 has the [[fallthrough]] attribute, and GCC7+ has __attribute__ ((fallthrough)), but I didn't want to require either so I refactored the switch into if statements.
This commit is contained in:
parent
1137acc9e0
commit
84968c6bb2
1 changed files with 15 additions and 6 deletions
|
@ -325,12 +325,21 @@ static void CanonicalizeCursorWordAndSearchOptions(
|
|||
}
|
||||
break;
|
||||
}
|
||||
|
||||
switch (found_question_marks) { // all fallthroughs
|
||||
case 3: options->flag_description_substring_search = true;
|
||||
case 2: options->flag_location_substring_search = true;
|
||||
case 1: options->flag_name_substring_search = true;
|
||||
};
|
||||
|
||||
if (found_question_marks == 3) {
|
||||
options->flag_description_substring_search = true;
|
||||
options->flag_location_substring_search = true;
|
||||
options->flag_name_substring_search = true;
|
||||
}
|
||||
|
||||
if (found_question_marks == 2) {
|
||||
options->flag_location_substring_search = true;
|
||||
options->flag_name_substring_search = true;
|
||||
}
|
||||
|
||||
if (found_question_marks == 1) {
|
||||
options->flag_name_substring_search = true;
|
||||
}
|
||||
|
||||
options->return_all_matching_flags = (found_plusses > 0);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue