I'm trying to partially specialize a trait for arrays of non-chars:
template<typename T>
struct is_container : std::false_type {};
template<typename T, unsigned N>
struct is_container<T[N]>
: std::enable_if<!std::is_same<T, char>::value, std::true_type>::type {};
Visual Studio 2010 gives me a C2039 (type is no element of enable_if...). However, shouldn't SFINAE just bottom out here instead of giving a compiler error? Or does SFINAE not apply in this case?
Of course I could just separate the specializations for non-char and char:
template<typename T>
struct is_container : std::false_type {};
template<typename T, unsigned N>
struct is_container<T[N]> : std::true_type {};
template<unsigned N>
struct is_container<char[N]> : std::false_type {};
But I would really like to know why SFINAE doesn't work in this particular case.
typenameis needed in front ofstd::enable_if, because of dependent type but I wouldn't put it as answer because this is just speculation! – AraK Sep 12 '11 at 14:52typenameis not required in that context. While searching for base class, compiler excludes all non-types in the beginning. See this : stackoverflow.com/questions/4347730/… – Nawaz Sep 12 '11 at 14:55is_containersuch that you expect SFINAE to kick in? On the other hand, if you need a base only conditionally, something likestd::conditionalwould be more appropriate. – Luc Danton Sep 12 '11 at 15:16boost::lazy_enable_if? – Matthieu M. Sep 12 '11 at 15:20