[PATCH 03/15] options: move on top the definition of warning type enums

From: Luc Van Oostenryck
Date: Thu Jul 02 2020 - 19:11:15 EST


This allows to reuse these enums in earlier helpers.

Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@xxxxxxxxx>
---
lib.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/lib.c b/lib.c
index 5128a5b64e9e..43d55a0648ee 100644
--- a/lib.c
+++ b/lib.c
@@ -250,6 +250,12 @@ void die(const char *fmt, ...)
static struct token *pre_buffer_begin = NULL;
static struct token *pre_buffer_end = NULL;

+enum warning_type {
+ WARNING_OFF,
+ WARNING_ON,
+ WARNING_FORCE_OFF
+};
+
int Waddress = 0;
int Waddress_space = 1;
int Wbitwise = 1;
@@ -523,12 +529,6 @@ static int opt_##NAME(const char *arg, const char *opt, TYPE *ptr, int flag) \
OPT_NUMERIC(ullong, unsigned long long, strtoull)
OPT_NUMERIC(uint, unsigned int, strtoul)

-enum {
- WARNING_OFF,
- WARNING_ON,
- WARNING_FORCE_OFF
-};
-
static char **handle_onoff_switch(char *arg, char **next, const struct flag warnings[])
{
int flag = WARNING_ON;
--
2.27.0