Commit cc6312c1 by Kenny Simpson Committed by Paolo Carlini

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
parent e8ec07e1
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
......
......@@ -64,6 +64,7 @@ template<_GLIBCXX_TEMPLATE_PARAMS>
{
_M_arg1 = __u.first;
_M_arg2 = __u.second;
return *this;
}
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment