Hi TI experts,
I am using CGT v7.3.4, and my code is like below:
template<typename TSrc>
funcA(vector<TSrc> *src)
{
vector<int>::iterator iit;
vector<TSrc>::iterator sed = src ->end() - 1;
...
}
I know the first vector is support, but the second vector always gets an error while compile saying expected a ";". I wonder whether the compiler support this kind of embedded template, just like MicroSoft does.
Thanks.