diff options
| author | Marshall Clow <mclow.lists@gmail.com> | 2014-01-03 22:55:49 +0000 |
|---|---|---|
| committer | Marshall Clow <mclow.lists@gmail.com> | 2014-01-03 22:55:49 +0000 |
| commit | 0724bf67672c754aa61ce2659939450ff22c30fa (patch) | |
| tree | 6e8cfb4e543cf1036675f5cc78f5174316fcc2fe /libcxx/include/tuple | |
| parent | 7408c7066a0caad2b2871614ce5f651822d42667 (diff) | |
| download | bcm5719-llvm-0724bf67672c754aa61ce2659939450ff22c30fa.tar.gz bcm5719-llvm-0724bf67672c754aa61ce2659939450ff22c30fa.zip | |
Rename ___make_pair_return to __make_pair_return_impl; ___make_tuple_return to __make_tuple_return_impl; and ____iterator_traits to __iterator_traits_impl. Part of a campaign to remove > 2 underscores from libc++. No functionality change.
llvm-svn: 198457
Diffstat (limited to 'libcxx/include/tuple')
| -rw-r--r-- | libcxx/include/tuple | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/tuple b/libcxx/include/tuple index a1a7bcf0b5e..24e086db588 100644 --- a/libcxx/include/tuple +++ b/libcxx/include/tuple @@ -816,13 +816,13 @@ namespace { const __ignore_t<unsigned char> ignore = __ignore_t<unsigned char>() template <class _Tp> class _LIBCPP_TYPE_VIS_ONLY reference_wrapper; template <class _Tp> -struct ___make_tuple_return +struct __make_tuple_return_impl { typedef _Tp type; }; template <class _Tp> -struct ___make_tuple_return<reference_wrapper<_Tp> > +struct __make_tuple_return_impl<reference_wrapper<_Tp> > { typedef _Tp& type; }; @@ -830,7 +830,7 @@ struct ___make_tuple_return<reference_wrapper<_Tp> > template <class _Tp> struct __make_tuple_return { - typedef typename ___make_tuple_return<typename decay<_Tp>::type>::type type; + typedef typename __make_tuple_return_impl<typename decay<_Tp>::type>::type type; }; template <class... _Tp> |

