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.
'interface' : interfaces do not support virtual inheritance
You tried to virtually inherit from an interface. For example,
// C3118.cpp
__interface I1 {
};
__interface I2 : virtual I1 { // C3118
};
generates this error.