This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A::B::C


Hi

During a compilation session with egcs1.0.1 the compilation crashed
(Internal compiler error 90) on a command line that looked like
this:

typename A::B::C  d=e.f();


This was resolved by the following:


typedef typename A::B  AB;
...

typename AB::C d=e.f(); 


Regards

Iddo Hanniel



p.s. Congratulations on a job well done. This is definitely a huge
improvement over g++2.7.2. 



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]