Move empty entries warning to -Wextra

Since the behavior actually kinda makes sense, it's better as extra.
This commit is contained in:
ISSOtm
2019-12-07 02:48:06 +01:00
parent e5820312d4
commit b62832e94d

View File

@@ -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
};