Add tests to ensure that reference_wrapper<T> is trivially copyable. This was added to C++1z with the adoption of N4277, but libc++ already implemented it as a conforming extension. No code changes were needed, just more tests.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@222132 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow 2014-11-17 15:04:46 +00:00
parent 9a1468f79e
commit 275b6bbe1c

View File

@ -16,12 +16,43 @@
#include <functional>
#include <type_traits>
#include <string>
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
class MoveOnly
{
MoveOnly(const MoveOnly&);
MoveOnly& operator=(const MoveOnly&);
int data_;
public:
MoveOnly(int data = 1) : data_(data) {}
MoveOnly(MoveOnly&& x)
: data_(x.data_) {x.data_ = 0;}
MoveOnly& operator=(MoveOnly&& x)
{data_ = x.data_; x.data_ = 0; return *this;}
int get() const {return data_;}
};
#endif
template <class T>
void test()
{
typedef std::reference_wrapper<T> Wrap;
static_assert(std::is_copy_constructible<Wrap>::value, "");
static_assert(std::is_copy_assignable<Wrap>::value, "");
// Extension up for standardization: See N4151.
static_assert(std::is_trivially_copyable<Wrap>::value, "");
}
int main()
{
typedef std::reference_wrapper<int> T;
static_assert(std::is_copy_constructible<T>::value, "");
static_assert(std::is_copy_assignable<T>::value, "");
// Extension up for standardization: See N4151.
static_assert(std::is_trivially_copyable<T>::value, "");
test<int>();
test<double>();
test<std::string>();
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
test<MoveOnly>();
#endif
}