◄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 -♦-