C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
C2226
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2226
 
     syntax error : unexpected type 'type'
 
     A syntax error occured before, or in, the given type specifier.
 
     The following is an example of this error:
 
          int func1( int, ... , float ); // error, misplaced ellipsis
          int func2( int, float, ... );  // OK
                                    -♦-