summaryrefslogtreecommitdiffstats
path: root/libcxx/include/__functional_base_03
diff options
context:
space:
mode:
authorMarshall Clow <mclow.lists@gmail.com>2014-01-06 14:00:09 +0000
committerMarshall Clow <mclow.lists@gmail.com>2014-01-06 14:00:09 +0000
commita3e6e2b2866f7a3cbc8ed37c955ccfe625bacc22 (patch)
treedeb57603bc339dafa18373eb112c9df0e5e93b68 /libcxx/include/__functional_base_03
parente9ab39da866ec3c45f819ef1a9d40c714ef3d3ba (diff)
downloadbcm5719-llvm-a3e6e2b2866f7a3cbc8ed37c955ccfe625bacc22.tar.gz
bcm5719-llvm-a3e6e2b2866f7a3cbc8ed37c955ccfe625bacc22.zip
Rename several internal templates to get rid of ___ (triple underscores) or worse, four. No functionality change.
llvm-svn: 198608
Diffstat (limited to 'libcxx/include/__functional_base_03')
-rw-r--r--libcxx/include/__functional_base_036
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/__functional_base_03 b/libcxx/include/__functional_base_03
index 296dd8db307..f297ee057a9 100644
--- a/libcxx/include/__functional_base_03
+++ b/libcxx/include/__functional_base_03
@@ -1047,10 +1047,10 @@ public:
}
};
-template <class _Tp> struct ____is_reference_wrapper : public false_type {};
-template <class _Tp> struct ____is_reference_wrapper<reference_wrapper<_Tp> > : public true_type {};
+template <class _Tp> struct __is_reference_wrapper_impl : public false_type {};
+template <class _Tp> struct __is_reference_wrapper_impl<reference_wrapper<_Tp> > : public true_type {};
template <class _Tp> struct __is_reference_wrapper
- : public ____is_reference_wrapper<typename remove_cv<_Tp>::type> {};
+ : public __is_reference_wrapper_impl<typename remove_cv<_Tp>::type> {};
template <class _Tp>
inline _LIBCPP_INLINE_VISIBILITY
OpenPOWER on IntegriCloud