Actions
Improvements #10953
closedExplicitly mark fallthrough in switch statements
Start date:
09/19/2022
Due date:
% Done:
100%
Estimated time:
Description
Wt should not report implicit fallthrough warnings (-Wimplicit-fallthrough). We should mark every deliberate fallthrough explicitly.
For C++17 this can be done with [[fallthrough]]
. For C++14 and GCC compatible compilers (like Clang) we can
use __attribute__((fallthrough))
.
Updated by Roel Standaert about 1 year ago
- Status changed from InProgress to Review
Updated by Roel Standaert about 1 year ago
- Related to Improvements #10954: Investigate suspicious fallthrough added
Updated by Matthias Van Ceulebroeck 4 months ago
- Status changed from Resolved to Closed
Actions