It is OK to cast to a private base class if the current member belongs to the...
It is OK to cast to a private base class if the current member belongs to the class that the private base class is a base of: class A {}; class B : private A { void f(B *b) { A* a = b; } }; llvm-svn: 67860
Loading
Please register or sign in to comment