This is the mail archive of the gcc-help@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]
Other format: [Raw text]

Re: typedef in templated base class, won't compile


    template<class TEMPLATE_ARG>
    class Child : public Base<TEMPLATE_ARG>
    {
    public:
      typename Base<TEMPLATE_ARG>::MyType *MakeObject();
    };

 This fix the compilation error for me.


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