OSDN Git Service

2005-10-01 Kenny Simpson <theonetruekenny@yahoo.com>
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 1 Oct 2005 08:35:49 +0000 (08:35 +0000)
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 1 Oct 2005 08:35:49 +0000 (08:35 +0000)
* 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

libstdc++-v3/ChangeLog
libstdc++-v3/include/tr1/tuple_iterate.h

index b9db59e..53d8361 100644 (file)
@@ -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
index 2bf7d3e..4ae5661 100644 (file)
@@ -64,6 +64,7 @@ template<_GLIBCXX_TEMPLATE_PARAMS>
       { 
        _M_arg1 = __u.first;
        _M_arg2 = __u.second;
+       return *this;
       }
 #endif