template<class T, class
E, bool EnableCopy = (is_copy_constructible_or_void<T>::value && std::is_copy_constructible<E>::value && is_copy_assignable_or_void<T>::value && std::is_copy_assignable<E>::value), bool EnableMove = (is_move_constructible_or_void<T>::value && std::is_move_constructible<E>::value && is_move_assignable_or_void<T>::value && std::is_move_assignable<E>::value)>
struct q23::detail::expected_delete_assign_base< T, E, EnableCopy, EnableMove >
Definition at line 1196 of file qexpected_p.h.