description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2630 | Compiler Error C2630 | 11/04/2016 |
|
| 7a655a9c-bab4-495b-97a3-a3f34cf5369a |
'symbol' found in what should be a comma-separated list
The symbol appears in a context that requires a comma.
The following sample generates C2630:
// C2630.cpp// compile with: /cstructD { D(int); }; structE { E(int); }; classC : publicD, publicE { C(); }; C::C() : D(0) ; E(0) { } // C2630C::C() : D(0), E(0) {} // OK