Test helper: Function that would normally trigger a warning
| 7 | |
| 8 | // Test helper: Function that would normally trigger a warning |
| 9 | static int unused_parameter_function(int x, FL_MAYBE_UNUSED int y) { |
| 10 | FL_DISABLE_WARNING_PUSH |
| 11 | FL_DISABLE_WARNING_UNUSED_PARAMETER |
| 12 | return x; // y is unused |
| 13 | FL_DISABLE_WARNING_POP |
| 14 | } |
| 15 | |
| 16 | // Test helper: Function with implicit fallthrough |
| 17 | static int fallthrough_function(int x) { |