Tagged Questions
4
votes
5answers
1k views
Getting rid of error C2243
Is it possible to getting rid of error C2243?
class B {};
class D : protected B {};
D d;
B *p = &d; // conversion from 'D *' to 'B &' exists, but is inaccessible
I had this error in my ...
3
votes
10answers
994 views
Why is implicit conversion allowed from superclass to subclass?
Can someone tell me why the line with "//Compiles" compiles, and why the line with "//Doesn't Compile" does not?
I don't understand why A would be implicitly convertible to B, not the other way ...