Change -w so that warnings can be activated again later on.
[cparser] / warning.h
index 31d9005..90f3ca6 100644 (file)
--- a/warning.h
+++ b/warning.h
@@ -25,6 +25,8 @@
 void set_warning_opt(const char *opt);
 
 typedef struct warning_t {
+       bool other:1;                         /**< Warnings not covered by any option below */
+
        bool address:1;                       /**< Warn about suspicious uses of memory addresses */
        bool aggregate_return:1;              /**< Warn if any functions that return structures or unions are defined or called */
        bool attribute:1;                     /**< Warn if an unexpected `__attribute__' is used or function attributes applied to variables, etc. */