3744

“Enum constant ‘<name>’ already defined”

Check if you have followed the rules for the definition of enumeration values:

  • Within one enum definition all values have to be unique.
  • Within all global enum definitions all values have to be unique.
  • Within all local enum definitions all values have to be unique.