إشعار
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تسجيل الدخول أو تغيير الدلائل.
يتطلب الوصول إلى هذه الصفحة تخويلاً. يمكنك محاولة تغيير الدلائل.
'identifier' : redefinition within definition
Remarks
A class, structure, union, or enumeration is redefined in its own declaration.
Example
The following example generates C2458:
// C2458.cpp
class C {
enum i { C }; // C2458
};