Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
'identifier' : 'inline' is the only legal storage class for constructors
A constructor is declared as a storage class other than inline.
The following sample generates C2633:
// C2633.cpp
// compile with: /c
class C {
extern C(); // C2633, not inline
inline C(); // OK
};