Poznámka
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete sa skúsiť prihlásiť alebo zmeniť adresáre.
Na prístup k tejto stránke sa vyžaduje oprávnenie. Môžete skúsiť zmeniť adresáre.
'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
};