This seams to be a bug in MSVC10?
#include <type_traits>
template<int j>
struct A{
template<int i>
typename std::enable_if<i==j>::type
t(){}
};
int main(){
A<1>().t<1>(); //error C2770
}
error C2770: invalid explicit template_or_generic argument(s) "enable_if::type A::t(void)".
The following compiles:
#include <type_traits>
template<class j>
struct A{
template<class i>
typename std::enable_if<std::is_same<i,j>::value>::type
t(){}
};
template<unsigned int j>
struct B{
template<unsigned int i>
typename std::enable_if<i==j>::type
t(){}
};
int main(){
A<int>().t<int>();
B<1>().t<1>();
}
#include <type_traits>andusing std::enable_if? – KennyTM Dec 16 '11 at 17:57unsigned int, or evenlong. That might be an acceptable solution for you. – Prætorian Dec 16 '11 at 18:08<typetraits>. It should be<type_traits>– Nawaz Dec 16 '11 at 18:13