diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-08-08 14:54:51 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-08-08 14:54:51 +0000 |
commit | 7a13e4e3cc81d350e04804247cc04a9a751f8981 (patch) | |
tree | e9d418469f5e42f176816659ee869c02c998b130 /libstdc++-v3 | |
parent | 6a679573e2f1c78cb0753a187e289faa6141a971 (diff) | |
download | gcc-7a13e4e3cc81d350e04804247cc04a9a751f8981.tar.gz |
2010-08-08 Paolo Carlini <paolo.carlini@oracle.com>
PR libstdc++/44963
* include/bits/stl_iterator.h (insert_iterator<>::
operator=(const typename _Container::value_type&,
back_insert_iterator<>::
operator=(const typename _Container::value_type&),
front_insert_iterator<>::
operator=(const typename _Container::value_type&))): Add
in C++0x mode.
* testsuite/ext/rope/44963.cc: New.
* testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Adjust
dg-error line number.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@163001 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 14 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/stl_iterator.h | 28 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/20_util/weak_ptr/comparison/cmp_neg.cc | 2 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/ext/rope/44963.cc | 31 |
4 files changed, 71 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b70de70edba..11b66371dde 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,19 @@ 2010-08-08 Paolo Carlini <paolo.carlini@oracle.com> + PR libstdc++/44963 + * include/bits/stl_iterator.h (insert_iterator<>:: + operator=(const typename _Container::value_type&, + back_insert_iterator<>:: + operator=(const typename _Container::value_type&), + front_insert_iterator<>:: + operator=(const typename _Container::value_type&))): Add + in C++0x mode. + * testsuite/ext/rope/44963.cc: New. + * testsuite/20_util/weak_ptr/comparison/cmp_neg.cc: Adjust + dg-error line number. + +2010-08-08 Paolo Carlini <paolo.carlini@oracle.com> + * include/c_global/cmath: Implement US 136. * include/tr1_impl/cmath: Do not bring fpclassify, etc from namespace std, define namespace tr1. diff --git a/libstdc++-v3/include/bits/stl_iterator.h b/libstdc++-v3/include/bits/stl_iterator.h index 105469acb4e..83a390d3d9e 100644 --- a/libstdc++-v3/include/bits/stl_iterator.h +++ b/libstdc++-v3/include/bits/stl_iterator.h @@ -416,14 +416,21 @@ _GLIBCXX_BEGIN_NAMESPACE(std) * the end, if you like). Assigning a value to the %iterator will * always append the value to the end of the container. */ +#ifndef __GXX_EXPERIMENTAL_CXX0X__ back_insert_iterator& operator=(typename _Container::const_reference __value) { container->push_back(__value); return *this; } +#else + back_insert_iterator& + operator=(const typename _Container::value_type& __value) + { + container->push_back(__value); + return *this; + } -#ifdef __GXX_EXPERIMENTAL_CXX0X__ back_insert_iterator& operator=(typename _Container::value_type&& __value) { @@ -499,14 +506,21 @@ _GLIBCXX_BEGIN_NAMESPACE(std) * the front, if you like). Assigning a value to the %iterator will * always prepend the value to the front of the container. */ +#ifndef __GXX_EXPERIMENTAL_CXX0X__ front_insert_iterator& operator=(typename _Container::const_reference __value) { container->push_front(__value); return *this; } +#else + front_insert_iterator& + operator=(const typename _Container::value_type& __value) + { + container->push_front(__value); + return *this; + } -#ifdef __GXX_EXPERIMENTAL_CXX0X__ front_insert_iterator& operator=(typename _Container::value_type&& __value) { @@ -603,6 +617,7 @@ _GLIBCXX_BEGIN_NAMESPACE(std) * // vector v contains A, 1, 2, 3, and Z * @endcode */ +#ifndef __GXX_EXPERIMENTAL_CXX0X__ insert_iterator& operator=(typename _Container::const_reference __value) { @@ -610,8 +625,15 @@ _GLIBCXX_BEGIN_NAMESPACE(std) ++iter; return *this; } +#else + insert_iterator& + operator=(const typename _Container::value_type& __value) + { + iter = container->insert(iter, __value); + ++iter; + return *this; + } -#ifdef __GXX_EXPERIMENTAL_CXX0X__ insert_iterator& operator=(typename _Container::value_type&& __value) { diff --git a/libstdc++-v3/testsuite/20_util/weak_ptr/comparison/cmp_neg.cc b/libstdc++-v3/testsuite/20_util/weak_ptr/comparison/cmp_neg.cc index db7907607c3..f8cf9cdb0ec 100644 --- a/libstdc++-v3/testsuite/20_util/weak_ptr/comparison/cmp_neg.cc +++ b/libstdc++-v3/testsuite/20_util/weak_ptr/comparison/cmp_neg.cc @@ -45,7 +45,7 @@ main() // { dg-warning "note" "" { target *-*-* } 423 } // { dg-warning "note" "" { target *-*-* } 862 } // { dg-warning "note" "" { target *-*-* } 510 } -// { dg-warning "note" "" { target *-*-* } 1005 } +// { dg-warning "note" "" { target *-*-* } 1027 } // { dg-warning "note" "" { target *-*-* } 340 } // { dg-warning "note" "" { target *-*-* } 290 } // { dg-warning "note" "" { target *-*-* } 197 } diff --git a/libstdc++-v3/testsuite/ext/rope/44963.cc b/libstdc++-v3/testsuite/ext/rope/44963.cc new file mode 100644 index 00000000000..32bd9ded612 --- /dev/null +++ b/libstdc++-v3/testsuite/ext/rope/44963.cc @@ -0,0 +1,31 @@ +// { dg-options "-std=gnu++0x" } +// { dg-do compile } + +// Copyright (C) 2010 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/>. + +#include <ext/rope> + +// libstdc++/44963 +void test01() +{ + __gnu_cxx::crope line("test"); + auto ii(std::back_inserter(line)); + + *ii++ = 'm'; + *ii++ = 'e'; +} |