diff options
author | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-04 02:49:33 +0000 |
---|---|---|
committer | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-11-04 02:49:33 +0000 |
commit | 60f7840a4bb9c9c822f4b19c20549d93ec89a309 (patch) | |
tree | 7b05f82cfd431ef0b9956d4ec15d48f07910a3ca /libstdc++-v3 | |
parent | 6e0bb7e642dfdcc7d94eaa37e1af87579004a09f (diff) | |
download | gcc-60f7840a4bb9c9c822f4b19c20549d93ec89a309.tar.gz |
Make reference_wrapper trivially copyable.
* include/std/functional (reference_wrapper): Define copy constructor
and copy assignment as defaulted.
* testsuite/20_util/bind/ref_neg.cc: Adjust dg-error.
* testsuite/20_util/reference_wrapper/requirements.cc: New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@217067 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/std/functional | 10 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/20_util/bind/ref_neg.cc | 8 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/20_util/reference_wrapper/requirements.cc | 32 |
4 files changed, 43 insertions, 12 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 19a86a08cf5..4f2c9b5ab65 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -11,6 +11,11 @@ * include/bits/regex.tcc (regex_traits::lookup_classname): Use ctype_base::blank. + * include/std/functional (reference_wrapper): Define copy constructor + and copy assignment as defaulted. + * testsuite/20_util/bind/ref_neg.cc: Adjust dg-error. + * testsuite/20_util/reference_wrapper/requirements.cc: New. + 2014-11-03 Paolo Carlini <paolo.carlini@oracle.com> * include/parallel/algo.h: Do not use default arguments in function diff --git a/libstdc++-v3/include/std/functional b/libstdc++-v3/include/std/functional index f8e9b54fd91..25ec1b351b8 100644 --- a/libstdc++-v3/include/std/functional +++ b/libstdc++-v3/include/std/functional @@ -410,16 +410,10 @@ _GLIBCXX_HAS_NESTED_TYPE(result_type) reference_wrapper(_Tp&&) = delete; - reference_wrapper(const reference_wrapper<_Tp>& __inref) noexcept - : _M_data(__inref._M_data) - { } + reference_wrapper(const reference_wrapper&) = default; reference_wrapper& - operator=(const reference_wrapper<_Tp>& __inref) noexcept - { - _M_data = __inref._M_data; - return *this; - } + operator=(const reference_wrapper&) = default; operator _Tp&() const noexcept { return this->get(); } diff --git a/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc b/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc index 1063dd35d7e..4e627cfaf48 100644 --- a/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc +++ b/libstdc++-v3/testsuite/20_util/bind/ref_neg.cc @@ -30,10 +30,10 @@ void test01() { const int dummy = 0; std::bind(&inc, _1)(0); // { dg-error "no match" } - // { dg-error "rvalue|const" "" { target *-*-* } 1213 } - // { dg-error "rvalue|const" "" { target *-*-* } 1227 } - // { dg-error "rvalue|const" "" { target *-*-* } 1241 } - // { dg-error "rvalue|const" "" { target *-*-* } 1255 } + // { dg-error "rvalue|const" "" { target *-*-* } 1207 } + // { dg-error "rvalue|const" "" { target *-*-* } 1221 } + // { dg-error "rvalue|const" "" { target *-*-* } 1235 } + // { dg-error "rvalue|const" "" { target *-*-* } 1249 } std::bind(&inc, std::ref(dummy))(); // { dg-error "no match" } } diff --git a/libstdc++-v3/testsuite/20_util/reference_wrapper/requirements.cc b/libstdc++-v3/testsuite/20_util/reference_wrapper/requirements.cc new file mode 100644 index 00000000000..c4d784cf59d --- /dev/null +++ b/libstdc++-v3/testsuite/20_util/reference_wrapper/requirements.cc @@ -0,0 +1,32 @@ +// 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/>. + +// { dg-options "-std=gnu++11" } +// { dg-do compile } + +#include <functional> + +struct NonTrivial +{ + ~NonTrivial() { } +}; + +using R = std::reference_wrapper<NonTrivial>; + +static_assert(std::is_copy_constructible<R>::value, "copy constructible"); +static_assert(std::is_copy_assignable<R>::value, "copy assignable"); +static_assert(std::is_trivially_copyable<R>::value, "trivially copyable"); |