إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'identifier' : 'inline' is the only legal storage class for constructors
Remarks
A constructor is declared as a storage class other than inline.
Example
The following example generates C2633:
// C2633.cpp
// compile with: /c
class C {
extern C(); // C2633, not inline
inline C(); // OK
};