Nóta
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað aðskrá þig inn eða breyta skráasöfnum.
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað að breyta skráasöfnum.
nonstandard extension used: override specifier 'keyword'
Remarks
A keyword was used that is not in the C++ standard, for example, one of the override specifiers that also works under /clr. For more information, see,
Example
The following example generates C4481.
// C4481.cpp
// compile with: /W4 /c
class B {
virtual void f(unsigned);
};
class C : B {
void f(unsigned) override; // C4481
void f2(unsigned);
};