Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
'symbol' found in what should be a comma-separated list
Remarks
The symbol appears in a context that requires a comma.
Example
The following example generates C2630:
// C2630.cpp
// compile with: /c
struct D {
D(int);
};
struct E {
E(int);
};
class C : public D, public E {
C();
};
C::C() : D(0) ; E(0) { } // C2630
C::C() : D(0), E(0) {} // OK