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.
'identifier': 'modifier' not permitted on data declarations
The friend
, virtual
, and inline
modifiers cannot be used for data declarations.
Example
The following example generates C2433:
// C2433.cpp
int main()
{
virtual int i; // C2433
}