9

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.

bitmask
  • 32,434
  • 14
  • 99
  • 159

1 Answers1

10

The noexcept specifier accepts any boolean constant expression, so you can but your type trait check in there directly:

template <typename T>
struct X {
    X(X&&) noexcept(std::is_nothrow_move_constructible<T>::value) {}
}; 
TartanLlama
  • 63,752
  • 13
  • 157
  • 193