loladiro added a comment.

Before I commit this, I just realized

  __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& 
__p)
      _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
                 is_nothrow_copy_assignable<_T2>::value)
      {
          _T1::operator=(__p.first());
          __second_ = __p.second();
          return *this;
      }

is only constexpr in C++14, right?


Repository:
  rL LLVM

https://reviews.llvm.org/D24372



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to