I have some C++ code that is no longer compiling without the -fpermissive option. It\'s propriety code that I can\'t share, but I\'ve think I\'ve been able to extract a simp
If your base class is a template instance, then there's no way to know that next refers to a name in the base class -- after all, the name needn't even exist (think about specializations)! Thus, you have to assert to the compiler that next is actually a class member by saying this->, or List, or by prepending using List to your derived class template.