【发布时间】:2021-09-22 13:49:09
【问题描述】:
这段代码:
template<typename T, template<typename> typename Pred>
concept sats_pred = static_cast<bool>(Pred<T>::value);
template<template<typename...> typename A, template<typename> typename Cond>
struct is_container_of_helper {
template<sats_pred<Cond>... Ts>
void operator()(const A<Ts...>&) const
{}
};
template<typename T>
struct always_true {
static constexpr bool value = true;
};
template<typename T, template<typename...> typename Container, template<typename> typename Cond>
concept is_container_of_if = requires(const T& v, const is_container_of_helper<Container, Cond>& h)
{
h(v);
};
template<typename T, template<typename...> typename A>
concept is = is_container_of_if<T, A, always_true>;
template<template<typename...> typename A>
struct is_a {
template<typename T>
struct type {
static constexpr bool value = is<T, A>;
};
};
template<typename T, template<typename...> typename Contained, template<typename...> typename Container>
concept is_container_of = is_container_of_if<T, Container, typename is_a<Contained>::type>;
不在 gcc 或 clang trunk 下编译,但在 msvc (godbolt) 下编译。在 gcc/clang 下它给出了
expected a class template, got 'typename is_a<Contained>::type
此代码有效吗?如果没有,有没有办法用有效的代码实现同样的事情,为什么 msvc 会编译它?
【问题讨论】:
标签: c++ templates gcc visual-c++