aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2018-09-11 12:50:39 +0100
committerJonathan Wakely <redi@gcc.gnu.org>2018-09-11 12:50:39 +0100
commit9e2d426c17e882e117af872b103f9ac2866b5132 (patch)
tree920b00625d4db3d3adfa08f9491c809416e5a512 /libstdc++-v3
parent86fc6ec9f366fd95d976c01bfa24c6775537ba62 (diff)
downloadgcc-9e2d426c17e882e117af872b103f9ac2866b5132.zip
gcc-9e2d426c17e882e117af872b103f9ac2866b5132.tar.gz
gcc-9e2d426c17e882e117af872b103f9ac2866b5132.tar.bz2
PR libstdc++/87278 restore support for std::make_shared<volatile T>()
PR libstdc++/87278 * include/bits/shared_ptr.h (make_shared): Use remove_cv instead of remove_const. * testsuite/20_util/shared_ptr/creation/87278.cc: New test. From-SVN: r264207
Diffstat (limited to 'libstdc++-v3')
-rw-r--r--libstdc++-v3/ChangeLog5
-rw-r--r--libstdc++-v3/include/bits/shared_ptr.h2
-rw-r--r--libstdc++-v3/testsuite/20_util/shared_ptr/creation/87278.cc26
3 files changed, 32 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 1a1a535..b23dfe4 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,10 @@
2018-09-11 Jonathan Wakely <jwakely@redhat.com>
+ PR libstdc++/87278
+ * include/bits/shared_ptr.h (make_shared): Use remove_cv instead of
+ remove_const.
+ * testsuite/20_util/shared_ptr/creation/87278.cc: New test.
+
Implement LWG 2905 changes to constrain unique_ptr constructors
* include/bits/unique_ptr.h (__uniq_ptr_impl): Add assertions to
check deleter type.
diff --git a/libstdc++-v3/include/bits/shared_ptr.h b/libstdc++-v3/include/bits/shared_ptr.h
index 2a82f18..d7b044b 100644
--- a/libstdc++-v3/include/bits/shared_ptr.h
+++ b/libstdc++-v3/include/bits/shared_ptr.h
@@ -714,7 +714,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
inline shared_ptr<_Tp>
make_shared(_Args&&... __args)
{
- typedef typename std::remove_const<_Tp>::type _Tp_nc;
+ typedef typename std::remove_cv<_Tp>::type _Tp_nc;
return std::allocate_shared<_Tp>(std::allocator<_Tp_nc>(),
std::forward<_Args>(__args)...);
}
diff --git a/libstdc++-v3/testsuite/20_util/shared_ptr/creation/87278.cc b/libstdc++-v3/testsuite/20_util/shared_ptr/creation/87278.cc
new file mode 100644
index 0000000..04ab367
--- /dev/null
+++ b/libstdc++-v3/testsuite/20_util/shared_ptr/creation/87278.cc
@@ -0,0 +1,26 @@
+// Copyright (C) 2018 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/>.
+
+// { dg-do compile { target c++11 } }
+
+#include <memory>
+
+void
+test01()
+{
+ std::make_shared<volatile int>();
+}