diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/common.h | 1 | ||||
-rw-r--r-- | src/gamma-coopgamma.c | 1 | ||||
-rw-r--r-- | src/redshift.c | 5 |
3 files changed, 6 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index d9a7c3a..9234e43 100644 --- a/src/common.h +++ b/src/common.h @@ -91,6 +91,7 @@ # pragma clang diagnostic ignored "-Wassign-enum" /* warns about bit field enums */ # pragma clang diagnostic ignored "-Wpadded" /* only relevant for library headers */ # pragma clang diagnostic ignored "-Wcomma" /* comma is useful in loop conditions */ +# pragma clang diagnostic ignored "-Wcovered-switch-default" /* stupid warning: not necessary true */ #elif defined(__GNUC__) # pragma GCC diagnostic ignored "-Wunsuffixed-float-constants" /* stupid warning */ # pragma GCC diagnostic ignored "-Wpadded" /* only relevant for library headers */ diff --git a/src/gamma-coopgamma.c b/src/gamma-coopgamma.c index fab083b..0dfb9c2 100644 --- a/src/gamma-coopgamma.c +++ b/src/gamma-coopgamma.c @@ -177,7 +177,6 @@ coopgamma_start(struct gamma_state *state) default: case PROGRAM_MODE_PRINT: abort(); - break; } free(state->methods); diff --git a/src/redshift.c b/src/redshift.c index 77cabb8..29f463c 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -451,6 +451,11 @@ main(int argc, char *argv[]) case PROGRAM_MODE_CONTINUAL: run_continual_mode(); break; + +#if defined(__GNUC__) + default: + __builtin_unreachable(); +#endif } if (method_state) |