From b62832e94dbfdc1c09edc9995745a77e1758bb0f Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Sat, 7 Dec 2019 02:48:06 +0100 Subject: [PATCH] Move empty entries warning to -Wextra Since the behavior actually kinda makes sense, it's better as extra. --- src/asm/warning.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asm/warning.c b/src/asm/warning.c index fbbbd0a8..805dff4a 100644 --- a/src/asm/warning.c +++ b/src/asm/warning.c @@ -77,7 +77,6 @@ enum MetaWarningCommand { /* Warnings that probably indicate an error */ static uint8_t const _wallCommands[] = { WARNING_BUILTIN_ARG, - WARNING_EMPTY_ENTRY, WARNING_LARGE_CONSTANT, WARNING_LONG_STR, META_WARNING_DONE @@ -85,6 +84,7 @@ static uint8_t const _wallCommands[] = { /* Warnings that are less likely to indicate an error */ static uint8_t const _wextraCommands[] = { + WARNING_EMPTY_ENTRY, WARNING_OBSOLETE, META_WARNING_DONE };