Commit 8ce060cf authored by Shariar Azad Riday's avatar Shariar Azad Riday

Fix build error for all_constructible

parent 7a3a5880
......@@ -629,7 +629,7 @@ template <class T, class... Ts, class U, class... Us>
struct all_constructible<type_list<T, Ts...>, type_list<U, Us...>> {
static constexpr bool value
= std::is_constructible_v<T, U>
&& all_constructible_v<type_list<Ts...>, type_list<Us...>>;
&& all_constructible<type_list<Ts...>, type_list<Us...>>::value;
};
/// Convenience alias for `all_constructible<Ts, Us>::value`.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment