From: Jonathan Wakely Date: Fri, 6 Jan 2017 14:04:33 +0000 (+0000) Subject: Add deleted std::thread(const thread&&) constructor X-Git-Tag: releases/gcc-5.5.0~608 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78ba55d478e8eb8791cb5bb9bbcc364c3ed02994;p=thirdparty%2Fgcc.git Add deleted std::thread(const thread&&) constructor Backport from mainline 2017-01-03 Jonathan Wakely PR libstdc++/78956 * include/std/thread (thread(const thread&&)): Add deleted constructor. * testsuite/30_threads/thread/cons/lwg2097.cc: New test. From-SVN: r244158 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6e879a8f9a76..948c31510d30 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,13 @@ +2017-01-06 Jonathan Wakely + + Backport from mainline + 2017-01-03 Jonathan Wakely + + PR libstdc++/78956 + * include/std/thread (thread(const thread&&)): Add deleted + constructor. + * testsuite/30_threads/thread/cons/lwg2097.cc: New test. + 2017-01-06 Jonathan Wakely PR libstdc++/78991 diff --git a/libstdc++-v3/include/std/thread b/libstdc++-v3/include/std/thread index ebbda62fa724..34e15e84a73d 100644 --- a/libstdc++-v3/include/std/thread +++ b/libstdc++-v3/include/std/thread @@ -124,6 +124,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION // 2097. packaged_task constructors should be constrained thread(thread&) = delete; thread(const thread&) = delete; + thread(const thread&&) = delete; thread(thread&& __t) noexcept { swap(__t); } diff --git a/libstdc++-v3/testsuite/30_threads/thread/cons/lwg2097.cc b/libstdc++-v3/testsuite/30_threads/thread/cons/lwg2097.cc new file mode 100644 index 000000000000..3ec4325e957a --- /dev/null +++ b/libstdc++-v3/testsuite/30_threads/thread/cons/lwg2097.cc @@ -0,0 +1,29 @@ +// { dg-do compile } +// { dg-require-cstdint "" } +// { dg-require-gthreads "" } + +// Copyright (C) 2017 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 +// . + +#include + +using std::thread; +using std::is_constructible; + +static_assert( !is_constructible::value, "" ); +static_assert( !is_constructible::value, "" ); +static_assert( !is_constructible::value, "" );