C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2458
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2458
 
     'identifier' : redefinition within definition
 
     The specified class, structure, union, or enumeration was
     redefined in its own declaration.
 
     The following is an example of this error:
 
          class C
          {
              enum i { C };   // error
          };
                                    -♦-