Рассмотрим следующий пример:
template<int i>
struct nice_type;
template<class T>
struct is_nice : std::false_type {};
template<int i>
struct is_nice< nice_type<i> > : std::integral_constant<int, i> {};
template<class T, class = void>
struct pick
{
typedef std::integral_constant<int, -1> type;
};
template<class T>
struct pick<T, typename std::enable_if< is_nice<T>::value >::type >
{
typedef std::integral_constant<int, is_nice<T>::value > type;
};
int main()
{
std::cout << pick<int>::type::value << ", ";
std::cout << pick< nice_type<42> >::type::value << std::endl;
return 0;
}
Clang (3.4.1) выводит "-1, -1", а GCC (4.9.0) выводит "-1, 42".
Задача лежит в специализации pick
. Хотя Gcc кажется счастливым преобразовать is_nice<T>::value
(42) в bool(true)
, clang не делает этого и отбрасывает специализацию. Оба примера скомпилированы с помощью -std=c++11
.
Какой компилятор прав?