Can anyone explain why this code gives the error: error C2039: ‘RT’ : is not a member of ‘ConcreteTable’ (at least when compiled with VS2008 SP1) class Record { }; template <class T> class Table { public: typedef typename T::RT Zot; // << error occurs here }; class ConcreteTable : public Table<ConcreteTable> { public: typedef […]
Template typedef error
- Post author By user user
- Post date
- Categories In c++, templates
- 7 Comments on Template typedef error