- implemented -Wswitch-enum
[cparser] / warning.h
index 196f43f..431dbd3 100644 (file)
--- a/warning.h
+++ b/warning.h
@@ -37,8 +37,10 @@ typedef struct warning_t {
        bool cast_align:1;                    /**< Warn whenever a pointer is cast such that the required alignment of the target is increased */
        bool cast_qual:1;                     /**< Warn whenever a pointer is cast so as to remove a type qualifier from the target type */
        bool conversion:1;                    /**< Warn if a prototype causes a type conversion that is different from what would happen to the same argument in the absence of a prototype */
+#endif
        bool declaration_after_statement:1;   /**< Warn when a declaration is found after a statement in a block */
-       bool deprecated_declarations:1;       /**< Warn about uses of functions, variables and types marked as deprecated by using the 'deprecated' attribute */
+       bool deprecated_declarations:1;       /* TODO implement for types */ /**< Warn about uses of functions, variables and types marked as deprecated by using the 'deprecated' attribute */
+#if 0 // TODO
        bool div_by_zero:1;                   /**< Warn about compile-time integer division by zero */
 #endif
        bool empty_statement:1;               /**< Warn about empty statements, i.e. lone ';'  */
@@ -51,8 +53,8 @@ typedef struct warning_t {
        bool implicit_int:1;                  /**< Warn when a declaration does not specify a type */
 #if 0 // TODO
        bool inline:1;                        /**< Warn if a function can not be inlined and it was declared as inline */
-       bool long_long:1;                     /**< Warn if 'long long' type is used */
 #endif
+       bool long_long:1;                     /**< Warn if 'long long' type is used */
        bool main:1;                          /**< Warn if the type of 'main' is suspicious */
 #if 0 // TODO
        bool missing_braces:1;                /**< Warn if an aggregate or union initializer is not fully bracketed */
@@ -60,12 +62,12 @@ typedef struct warning_t {
        bool missing_declarations:1;          /**< Warn if a global function is defined without a previous declaration */
 #if 0 // TODO
        bool missing_format_attribute:1;      /**< If '-Wformat' is enabled, also warn about functions which might be candidates for 'format' attributes */
-       bool missing_noreturn:1;              /**< Warn about functions which might be candidates for attribute 'noreturn' */
 #endif
+       bool missing_noreturn:1;              /**< Warn about functions which might be candidates for attribute 'noreturn' */
        bool missing_prototypes:1;            /**< Warn if a global function is defined without a previous prototype declaration */
        bool multichar:1;                     /**< Warn if a multicharacter constant ('FOOF') is used. */
-#if 0 // TODO
        bool nested_externs:1;                /**< Warn if an 'extern' declaration is encountered within a function */
+#if 0 // TODO
        bool packed:1;                        /**< Warn if a structure is given the packed attribute, but the packed attribute has no effect on the layout or size of the structure */
        bool padded:1;                        /**< Warn if padding is included in a structure, either to align an element of the structure or to align the whole structure */
        bool parentheses:1;                   /**< Warn if parentheses are omitted in certain contexts (assignment where truth value is expected, if-else-braces) */
@@ -84,8 +86,8 @@ typedef struct warning_t {
 #endif
        bool strict_prototypes:1;             /**< Warn if a function declaration has an unspecified parameter list */
        bool switch_default:1;                /**< Warn whenever a 'switch' statement does not have a 'default' case */
-#if 0 // TODO
        bool switch_enum:1;                   /**< Warn about 'switch' statements with an enum as index type and missing case labels or case labels outside the enum range TODO has an alias -Wswitch? */
+#if 0 // TODO
        bool traditional:1;                   /**< Warn about certain constructs that behave differently in traditional and ISO C */
        bool undef:1;                         /**< Warn if an undefined identifier is evaluated in an '#if' directive */
        bool uninitialized:1;                 /**< Warn if an automatic variable is used without being initialized or if a variable may be clobbered by a 'setjmp' call. */