re PR libstdc++/64651 (std::rethrow_exception not found by ADL)
authorJonathan Wakely <jwakely@redhat.com>
Wed, 11 Nov 2015 10:08:23 +0000 (10:08 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 11 Nov 2015 10:08:23 +0000 (10:08 +0000)
PR libstdc++/64651
* libsupc++/exception_ptr.h (rethrow_exception): Add using-declaration
to __exception_ptr namespace.
* testsuite/18_support/exception_ptr/rethrow_exception.cc: Test ADL.
Remove unnecessary test variables.

From-SVN: r230147

libstdc++-v3/ChangeLog
libstdc++-v3/libsupc++/exception_ptr.h
libstdc++-v3/testsuite/18_support/exception_ptr/rethrow_exception.cc

index 5d41876ac57903a9b514e0d2c9edcf6e07d3a0bc..960a56ca186d4a747b10858fcab02abcc2346770 100644 (file)
@@ -1,3 +1,11 @@
+2015-11-11  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/64651
+       * libsupc++/exception_ptr.h (rethrow_exception): Add using-declaration
+       to __exception_ptr namespace.
+       * testsuite/18_support/exception_ptr/rethrow_exception.cc: Test ADL.
+       Remove unnecessary test variables.
+
 2015-11-10  Jonathan Wakely  <jwakely@redhat.com>
 
        PR libstdc++/68190
index 8fbad1c86d153ee5d2280e2968696575dd2699a7..7821c149f0e076255bf2794edfd650e9a41b96ef 100644 (file)
@@ -68,6 +68,8 @@ namespace std
 
   namespace __exception_ptr
   {
+    using std::rethrow_exception;
+
     /**
      *  @brief An opaque pointer to an arbitrary exception.
      *  @ingroup exceptions
index 31da2ecbe8249be2baa6b6f98dfe787c4d176537..7d3989213e3d5f1ed238653c2c68874b61460370 100644 (file)
@@ -30,7 +30,6 @@
 
 void test01()
 {
-  bool test __attribute__((unused)) = true;
   using namespace std;
 
   try {
@@ -54,7 +53,6 @@ void test02()
 
 void test03()
 {
-  bool test __attribute__((unused)) = true;
   using namespace std;
 
   exception_ptr ep;
@@ -71,7 +69,6 @@ void test03()
 
 void test04()
 {
-  bool test __attribute__((unused)) = true;
   using namespace std;
 
   // Weave the exceptions in an attempt to confuse the machinery.
@@ -103,12 +100,23 @@ void test04()
   }
 }
 
+void test05()
+{
+  // libstdc++/64651 std::rethrow_exception not found by ADL
+  // This is not required to work but is a conforming extension.
+  try {
+    rethrow_exception(std::make_exception_ptr(0));
+  } catch(...) {
+  }
+}
+
 int main()
 {
   test01();
   test02();
   test03();
   test04();
+  test05();
 
   return 0;
 }