コンパイラ エラー C2738
'declaration': あいまいか、または 'type' のメンバーではありません
関数の宣言が正しくありません。
次の例では C2738 が生成されます。
// C2738.cpp
struct A {
template <class T> operator T*();
// template <class T> operator T();
};
template <>
A::operator int() { // C2738
// try the following line instead
// A::operator int*() {
// or use the commented member declaration
return 0;
}