Assume I have a wrapper type
template <typename T>
struct X {/*..*/};
and I cannot just X(X&&) = default
because I have to do non-trivial stuff there.
However, I want it to be noexcept
but only in case that T(T&&)
is noexcept
. This can be tested with ::std::is_nothrow_move_constructible
.
I'm at a loss how to conditionally enable one version of the constructor or the other depending on a constexpr
. I suppose there could be a way to use SFINAE, but I don't see how to apply it to ctors.