summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Fiselier <eric@efcs.ca>2018-05-11 00:33:20 +0000
committerEric Fiselier <eric@efcs.ca>2018-05-11 00:33:20 +0000
commitf9fc9513bf48721ed5a8d229d81654928f733909 (patch)
tree182f1f9e43cb2a57bffde95491df7c98532bd04c
parent7d6224d2fa761e2e2c5a71c47e02bc37a92c0409 (diff)
downloadbcm5719-llvm-f9fc9513bf48721ed5a8d229d81654928f733909.tar.gz
bcm5719-llvm-f9fc9513bf48721ed5a8d229d81654928f733909.zip
Fix failing test due to incorrect use of noexcept
llvm-svn: 332066
-rw-r--r--libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp b/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp
index f7fb7ccfdfb..2b8cd709677 100644
--- a/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp
+++ b/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/result_of11.pass.cpp
@@ -58,20 +58,6 @@ void test_result_of_imp()
int main()
{
- { // Function types with noexcept
- typedef bool (&RF0)(int) noexcept;
- typedef bool (&RF1)(int, ...) noexcept;
- typedef bool (*PF0)(int) noexcept;
- typedef bool (*PF1)(int, ...) noexcept;
- typedef bool (*&PRF0)(int) noexcept;
- typedef bool (*&PRF1)(int, ...) noexcept;
- test_result_of_imp<RF0(int), bool>();
- test_result_of_imp<PF0(int), bool>();
- test_result_of_imp<PRF0(int), bool>();
- test_result_of_imp<RF1(int, int), bool>();
- test_result_of_imp<PF1(int, int), bool>();
- test_result_of_imp<PRF1(int, int), bool>();
- }
{
typedef char F::*PMD;
test_result_of_imp<PMD(F &), char &>();
OpenPOWER on IntegriCloud