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>();
}
link|improve this question

1  
Works in g++ and clang++. Have you #include <type_traits> and using std::enable_if? – KennyTM Dec 16 '11 at 17:57
Yes..........12 – Johannes Gerer Dec 16 '11 at 18:06
1  
What is the error? Dont post "not working". What do you mean by "not working"? Is it not compiling, or what ? – Nawaz Dec 16 '11 at 18:07
1  
Oddly enough, MSVC10 seems happy if you change the type of both template parameters to unsigned int, or even long. That might be an acceptable solution for you. – Prætorian Dec 16 '11 at 18:08
There is no header called <typetraits>. It should be <type_traits> – Nawaz Dec 16 '11 at 18:13
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.