Commit 86715b09 by Jonathan Wakely Committed by Jonathan Wakely

libstdc++/69939 Qualify get and forward

	PR libstdc++/69939
	* include/experimental/tuple (__apply_impl): Qualify get and forward.

From-SVN: r233666
parent 89c0c1fd
2016-02-24 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/69939
* include/experimental/tuple (__apply_impl): Qualify get and forward.
2016-02-23 Jonathan Wakely <jwakely@redhat.com>
* doc/xml/manual/using.xml: Document __STDCPP_WANT_MATH_SPEC_FUNCS__.
......
......@@ -58,7 +58,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
{
using _Wrap = _Maybe_wrap_member_pointer<decay_t<_Fn>>;
return _Wrap::__do_wrap(std::forward<_Fn>(f))(
get<_Idx>(forward<_Tuple>(t))...);
std::get<_Idx>(std::forward<_Tuple>(t))...);
}
template <typename _Fn, typename _Tuple>
......
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