Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
a typedef template is illegal
Templates are not allowed in typedef
definitions.
Example
The following sample generates C2823, and shows one way to fix it:
// C2823.cpp
template<class T>
typedef struct x {
T i; // C2823 can't use T, specify data type and delete template
int i; // OK
} x1;