Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
'class' : constructor syntax missing formal parameters
Remarks
The constructor for the class does not specify any formal parameters. The declaration of a constructor must specify a formal parameter list. The list can be empty.
To fix this issue, add a pair of parentheses after the declaration of class::*class.
Example
The following example shows how to fix C2461:
// C2461.cpp
// compile with: /c
class C {
C::C; // C2461
C::C(); // OK
};