Notiz
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Iech unzemellen oder Verzeechnesser ze änneren.
Zougrëff op dës Säit erfuerdert Autorisatioun. Dir kënnt probéieren, Verzeechnesser ze änneren.
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);
};