1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:34:59 +00:00

Everywhere: Add break after the last case label before default

We already do this in most places, so the style should be consistent.
Also, Clang does not like it, as this could cause an unexpected compile
error if some statements are added to the default label or a new label
is added above it.
This commit is contained in:
Daniel Bertalan 2021-07-05 19:17:08 +02:00 committed by Gunnar Beutner
parent b0208ce433
commit 98a9a1d7f9
7 changed files with 7 additions and 1 deletions

View file

@ -184,6 +184,7 @@ int print_space_usage(const String& path, const DuOption& du_option, int max_dep
break;
case DuOption::TimeType::Status:
time = path_stat.st_ctime;
break;
default:
break;
}