|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - Conversion to private base
Just tried the newest version of the compiler, 8.41.8, in hopes that the
conversion to private base (reported in May by a couple of folks) had been
fixed but it does not seem to be. Since I am sure there are alot of
different bugs on the list, I figured I ought to squeak.
Any chance that is in the pipeline?
Regards,
Tom Udale
P.S. in case you were wondering:
class A{};
void f(A&)
{
}
class B:private A
{
void mf()
{
f(*this); // This generates an access error although B has access
to its own bases - private or not.
}
};
Sep 29 2004
It's in tue queue! "Tom Udale" <tom tom.com> wrote in message news:cjfede$1l2e$1 digitaldaemon.com...Just tried the newest version of the compiler, 8.41.8, in hopes that the conversion to private base (reported in May by a couple of folks) had been fixed but it does not seem to be. Since I am sure there are alot of different bugs on the list, I figured I ought to squeak. Any chance that is in the pipeline? Sep 30 2004
|