'template type': 既定のテンプレート引数は部分的特殊化では使用できません
注釈
部分的特殊化用のテンプレートに既定の引数を含めることはできません。
例
次の例では C2756 が生成され、その修正方法が示されています。
// C2756.cpp
template <class T>
struct S {};
template <class T=int>
// try the following line instead
// template <class T>
struct S<T*> {}; // C2756