From 2a78bb961ad99cfc9ae4e8a05a9a5a6bf84e41f3 Mon Sep 17 00:00:00 2001 From: Andrew Trick Date: Tue, 5 Feb 2013 22:50:20 +0000 Subject: Revert "[Support][ErrorOr] Add support for convertable types." This reverts commit a33e1fafac7fedb1b080ef07ddf9ad6ddff3a830. This unit test crashes on Darwon. It needs to be temporarily reverted to unblock the test infrastructure. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174458 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/Support/ErrorOrTest.cpp | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'unittests/Support') diff --git a/unittests/Support/ErrorOrTest.cpp b/unittests/Support/ErrorOrTest.cpp index 6cef4fc212..a8608860b8 100644 --- a/unittests/Support/ErrorOrTest.cpp +++ b/unittests/Support/ErrorOrTest.cpp @@ -53,17 +53,6 @@ TEST(ErrorOr, Types) { EXPECT_EQ(3, **t3()); #endif } - -struct B {}; -struct D : B {}; - -TEST(ErrorOr, Covariant) { - ErrorOr b(ErrorOr(0)); - -#if LLVM_HAS_CXX11_STDLIB - ErrorOr > b1(ErrorOr >(0)); -#endif -} } // end anon namespace struct InvalidArgError { -- cgit v1.2.3