diff options
author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-01 08:35:49 +0000 |
---|---|---|
committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-10-01 08:35:49 +0000 |
commit | b92c7198011e4f05679aeb2d57947e8659aded3a (patch) | |
tree | 1584a8248fc299cbae025f7f66f0721a7d52211c /libstdc++-v3 | |
parent | 9e25b302b728aeda854b69c0fc95971e4f3b0980 (diff) | |
download | gcc-b92c7198011e4f05679aeb2d57947e8659aded3a.tar.gz |
2005-10-01 Kenny Simpson <theonetruekenny@yahoo.com>
* include/tr1/tuple_iterate.h (tuple::operator=(const std::pair<>&)):
Add missing return.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@104851 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/include/tr1/tuple_iterate.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index b9db59ea588..53d83615439 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2005-10-01 Kenny Simpson <theonetruekenny@yahoo.com> + + * include/tr1/tuple_iterate.h (tuple::operator=(const std::pair<>&)): + Add missing return. + 2005-09-30 Paolo Carlini <pcarlini@suse.de> PR libstdc++/24064 diff --git a/libstdc++-v3/include/tr1/tuple_iterate.h b/libstdc++-v3/include/tr1/tuple_iterate.h index 2bf7d3e22d5..4ae56615ea9 100644 --- a/libstdc++-v3/include/tr1/tuple_iterate.h +++ b/libstdc++-v3/include/tr1/tuple_iterate.h @@ -64,6 +64,7 @@ template<_GLIBCXX_TEMPLATE_PARAMS> { _M_arg1 = __u.first; _M_arg2 = __u.second; + return *this; } #endif |