]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++/69939 Qualify get and forward
authorJonathan Wakely <jwakely@redhat.com>
Wed, 24 Feb 2016 13:59:29 +0000 (13:59 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 24 Feb 2016 13:59:29 +0000 (13:59 +0000)
PR libstdc++/69939
* include/experimental/tuple (__apply_impl): Qualify get and forward.

From-SVN: r233666

libstdc++-v3/ChangeLog
libstdc++-v3/include/experimental/tuple

index 86cea26c7ae7c04edea39e1f6907a58d01102a55..8d5312dbc9dd7d522941558066c247f170036a98 100644 (file)
@@ -1,3 +1,8 @@
+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__.
index e3896e4f465ec1ee6052336946c1e65ccd1785ef..81e91bda3735148d367f6a3c157332cc0adb0157 100644 (file)
@@ -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>