diff options
author | Kenny Simpson <theonetruekenny@yahoo.com> | 2005-10-01 08:35:49 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2005-10-01 08:35:49 +0000 |
commit | cc6312c1e8cc9254859557e613fccc447cea45e6 (patch) | |
tree | 1584a8248fc299cbae025f7f66f0721a7d52211c | |
parent | e8ec07e1ec859fa5e5ff821c7edd350ad6728560 (diff) | |
download | gcc-cc6312c1e8cc9254859557e613fccc447cea45e6.zip gcc-cc6312c1e8cc9254859557e613fccc447cea45e6.tar.gz gcc-cc6312c1e8cc9254859557e613fccc447cea45e6.tar.bz2 |
tuple_iterate.h (tuple::operator=(const std::pair<>&)): Add missing return.
2005-10-01 Kenny Simpson <theonetruekenny@yahoo.com>
* include/tr1/tuple_iterate.h (tuple::operator=(const std::pair<>&)):
Add missing return.
From-SVN: r104851
-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 b9db59e..53d8361 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 2bf7d3e..4ae5661 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 |