diff options
| author | Chandler Carruth <chandlerc@gmail.com> | 2014-03-01 10:57:19 +0000 |
|---|---|---|
| committer | Chandler Carruth <chandlerc@gmail.com> | 2014-03-01 10:57:19 +0000 |
| commit | f4cde83d3a284a53869baa12d9eabe0342678e93 (patch) | |
| tree | 502213596a569e8d87c55027d45822a5ee0bd468 /llvm/unittests/Support | |
| parent | 16d3ab4f0e3c0ce7e015d5c039b8db0f0572d238 (diff) | |
| download | bcm5719-llvm-f4cde83d3a284a53869baa12d9eabe0342678e93.tar.gz bcm5719-llvm-f4cde83d3a284a53869baa12d9eabe0342678e93.zip | |
[C++11] Remove LLVM_HAS_CXX11_STDLIB now that it is just on.
llvm-svn: 202587
Diffstat (limited to 'llvm/unittests/Support')
| -rw-r--r-- | llvm/unittests/Support/ErrorOrTest.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/unittests/Support/ErrorOrTest.cpp b/llvm/unittests/Support/ErrorOrTest.cpp index 7a0c31f484d..18ce507b889 100644 --- a/llvm/unittests/Support/ErrorOrTest.cpp +++ b/llvm/unittests/Support/ErrorOrTest.cpp @@ -36,11 +36,9 @@ TEST(ErrorOr, SimpleValue) { #endif } -#if LLVM_HAS_CXX11_STDLIB ErrorOr<std::unique_ptr<int> > t3() { return std::unique_ptr<int>(new int(3)); } -#endif TEST(ErrorOr, Types) { int x; @@ -48,10 +46,8 @@ TEST(ErrorOr, Types) { *a = 42; EXPECT_EQ(42, x); -#if LLVM_HAS_CXX11_STDLIB // Move only types. EXPECT_EQ(3, **t3()); -#endif } struct B {}; @@ -61,9 +57,7 @@ TEST(ErrorOr, Covariant) { ErrorOr<B*> b(ErrorOr<D*>(0)); b = ErrorOr<D*>(0); -#if LLVM_HAS_CXX11_STDLIB ErrorOr<std::unique_ptr<B> > b1(ErrorOr<std::unique_ptr<D> >(0)); b1 = ErrorOr<std::unique_ptr<D> >(0); -#endif } } // end anon namespace |

