C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2374
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2374
 
     'identifier' : redefinition; multiple initialization
 
     The specified identifier was initialized more than once.
 
     A variable can be initialized only once.
 
     The following is an example of this error:
 
          int i = 0;
          int i = 1;  // error
                                    -♦-