Static Analysis Problem Type Reference

Inconsistent enumeration declaration (member count mismatch)

An inconsistent data declaration was found.

In this case, the same name was declared as an enumeration in two compilation units, but the number of enumeration literals in the two declarations did not match.

ID

Code Location

Description

1

Definition

The first definition

2

Definition

The second definition

Example

file1.c:

enum {a,b,c,d} x;

int main(int argc, char **argv)
{
    return 1;
}
        
file2.c:
          
    enum {a,b,c} x;