次の方法で共有


コンパイラ エラー C2823

typedef テンプレートが不正です

テンプレートは typedef 定義では許可されません。

次の例では、C2823 を生成し、その修正方法を示しています。

// 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;