C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
C2628
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2628
 
     'type1' followed by 'type2' is illegal. (did you forget a ';'?)
 
     A section of code between the two specified types was incorrect.
 
     This error can be caused by a missing semicolon.
 
     The following is an example of this error:
 
          class C
          {
          public:
             void func( void ) {;}
          }                         // semicolon is missing here
 
          void main() {}            // error detected on this line
                                    -♦-