Remove all instances of _LIBCPP_HAS_NO_RVALUE_REFERENCES from test/std/utilities

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@283032 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Fiselier
2016-10-01 10:46:01 +00:00
parent cdac787ae8
commit 89e826a160
45 changed files with 118 additions and 209 deletions

View File

@@ -21,7 +21,9 @@
#include <type_traits>
#include <string>
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
#include "test_macros.h"
#if TEST_STD_VER >= 11
class MoveOnly
{
MoveOnly(const MoveOnly&);
@@ -55,7 +57,7 @@ int main()
test<int>();
test<double>();
test<std::string>();
#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
#if TEST_STD_VER >= 11
test<MoveOnly>();
#endif
}