re PR libstdc++/61036 (shared_ptr<void>(new T) rejected)
authorJonathan Wakely <jwakely@redhat.com>
Fri, 2 May 2014 18:29:48 +0000 (19:29 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Fri, 2 May 2014 18:29:48 +0000 (19:29 +0100)
PR libstdc++/61036
* include/bits/shared_ptr_base.h (__shared_ptr::__shared_ptr(_Tp1*)):
Check the correct type in the static assertion.
* testsuite/20_util/shared_ptr/cons/61036.cc: New.

From-SVN: r210015

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/shared_ptr_base.h
libstdc++-v3/testsuite/20_util/shared_ptr/cons/61036.cc [new file with mode: 0644]

index 754530ceaa13fb3c8940d446ecf2dbe3c77c4c82..5c32a44d345c61e30c190d42f9948cbccda5286d 100644 (file)
@@ -8,6 +8,11 @@
        refer to...
        * testsuite/libstdc++-prettyprinters/simple11.cc: New.
 
+       PR libstdc++/61036
+       * include/bits/shared_ptr_base.h (__shared_ptr::__shared_ptr(_Tp1*)):
+       Check the correct type in the static assertion.
+       * testsuite/20_util/shared_ptr/cons/61036.cc: New.
+
 2014-04-27  Tim Shen  <timshen91@gmail.com>
 
        * include/bits/regex_automaton.h (_NFA<>::_M_insert_repeat):
index 57398af2eb6332e438891d2f7b87d5247cb71a38..c25157fe4bdce9ec6537af73e0de2c49493a1624 100644 (file)
@@ -871,7 +871,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
         : _M_ptr(__p), _M_refcount(__p)
        {
          __glibcxx_function_requires(_ConvertibleConcept<_Tp1*, _Tp*>)
-         static_assert( !is_void<_Tp>::value, "incomplete type" );
+         static_assert( !is_void<_Tp1>::value, "incomplete type" );
          static_assert( sizeof(_Tp1) > 0, "incomplete type" );
          __enable_shared_from_this_helper(_M_refcount, __p, __p);
        }
diff --git a/libstdc++-v3/testsuite/20_util/shared_ptr/cons/61036.cc b/libstdc++-v3/testsuite/20_util/shared_ptr/cons/61036.cc
new file mode 100644 (file)
index 0000000..9cade66
--- /dev/null
@@ -0,0 +1,28 @@
+// { dg-options "-std=gnu++11" }
+// { dg-do compile }
+
+// Copyright (C) 2014 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// 20.8.2.2 Template class shared_ptr [util.smartptr.shared]
+
+#include <memory>
+
+void test01()
+{
+  std::shared_ptr<void> p(new int);
+}