}
template <class T>
-Future<T>::Future(Future<T>&& other) noexcept : core_(other.core_) {
- other.core_ = nullptr;
+Future<T>::Future(Future<T>&& other) noexcept : core_(nullptr) {
+ *this = std::move(other);
}
template <class T>
-Future<T>& Future<T>::operator=(Future<T>&& other) noexcept {
- core_ = other.core_;
- other.core_ = nullptr;
+Future<T>& Future<T>::operator=(Future<T>&& other) {
+ std::swap(core_, other.core_);
return *this;
}
// movable
Future(Future&&) noexcept;
- Future& operator=(Future&&) noexcept;
+ Future& operator=(Future&&);
// makeFuture
template <class F = T>
{}
template <class T>
-Promise<T>::Promise(Promise<T>&& other) noexcept
- : retrieved_(other.retrieved_), core_(other.core_) {
- other.core_ = nullptr;
+Promise<T>::Promise(Promise<T>&& other) : core_(nullptr) {
+ *this = std::move(other);
}
template <class T>
-Promise<T>& Promise<T>::operator=(Promise<T>&& other) noexcept {
- retrieved_ = other.retrieved_;
- core_ = other.core_;
- other.core_ = nullptr;
+Promise<T>& Promise<T>::operator=(Promise<T>&& other) {
+ std::swap(core_, other.core_);
+ std::swap(retrieved_, other.retrieved_);
return *this;
}
Promise& operator=(Promise const&) = delete;
// movable
- Promise(Promise<T>&&) noexcept;
- Promise& operator=(Promise<T>&&) noexcept;
+ Promise(Promise<T>&&);
+ Promise& operator=(Promise<T>&&);
/** Return a Future tied to the shared core state. This can be called only
once, thereafter Future already retrieved exception will be raised. */