なぜこれはgcc48とclang32でコンパイルされないのですか?
#include <type_traits>
template <int N>
struct S {
template<class T>
typename std::enable_if<N==1, int>::type
f(T t) {return 1;};
template<class T>
typename std::enable_if<N!=1, int>::type
f(T t) {return 2;};
};
int main() {
S<1> s1;
return s1.f(99);
}
GCCエラー:
/home/lvv/p/sto/test/t.cc:12:2: error: no type named ‘type’ in ‘struct enable_if<false, int>’
f(T t) {return 2;};
^
CLANGエラー:
/home/lvv/p/sto/test/t.cc:11:26: error: no type named 'type' in 'std::enable_if<false, int>'; 'enable_if' cannot be used to
disable this declaration
typename std::enable_if<N!=1, int>::type
^~~~
/home/lvv/p/sto/test/t.cc:16:7: note: in instantiation of template class 'S<1>' requested here
S<1> s1;
^
編集-ソリューション
Charles Salviaからの回答を受け入れましたが、実際的な理由から、提案された回避策(Nに特化)を使用できませんでした。私は私のために働く他の回避策を見つけました。依存enable_if
させるT
:
typename std::enable_if<(sizeof(T),N==1), int>::type