Hi I've a doubt in typedef name. In particular, say we have a class template C as shown below. My question is `T` in the following example a typedef-name? I tried readingĀ
dcl.typedef but I couldn't pinpoint if that make T typedef-name.
template<typename T> struct C
{
//is T a typedef-name here?
};
Can someone tell me which clause makes T a typedef-name?
Regards,