typedef char TCHAR;
template <class T> class MyTemplateString
{
};
template <class T> class MyList
{
};
typedef MyTemplateString<TCHAR> MyString;
MyList<MyString> outlist;// here it's showing compile time error
The error is:
Implicit instantiation of undefined template
MyList <MyTemplateString<char>>
Works fine with GCC compiler only but does not work in LLVM-GCC compiler.
The code as posted above compiles fine here without any errors or warnings using both g++ and llvm-g++:
Version info:
My guess is that your real problem lies elsewhere.