description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Error C2575 | Compiler Error C2575 | 11/04/2016 |
|
| 9eb45706-37ef-4481-b373-6d193ba13634 |
'identifier' : only member functions and bases can be virtual
A global function or class is declared virtual
. This is not allowed.
The following sample generates C2575:
// C2575.cpp// compile with: /cvirtualvoidfunc() {} // C2575voidfunc2() {} structA { virtualvoidfunc2(){} };