次の方法で共有


コンパイラ エラー C2762

'class' : 'argument' 用テンプレート引数としては無効な式です

/Za を使用する場合、コンパイラは整数をポインターに変換されません。

次の例では C2762 が生成されます:

// C2762.cpp
// compile with: /Za
template<typename T, T *pT>
class X2 {};

void f2() {
   X2<int, 0> x21;   // C2762
   // try the following line instead
   // X2<int, static_cast<int *>(0)> x22;
}