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.
'keyword' keyword is not permitted in cast
The keyword is invalid in a cast.
The following sample generates C2736:
// C2736.cpp
int main() {
return (virtual) 0; // C2736
// try the following line instead
// return 0;
}