From 56a85ca8bfae450e58f64d3f8ed3209dba10fec0 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Tue, 25 Jan 2011 16:31:30 +0000 Subject: [PATCH] tweak for readability (no functionality change) git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@124192 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/tuple | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tuple b/include/tuple index 3f67ff8b7..63ce4cc32 100644 --- a/include/tuple +++ b/include/tuple @@ -589,7 +589,7 @@ typename tuple_element<_Ip, tuple<_Tp...> >::type&& get(tuple<_Tp...>&& __t) { typedef typename tuple_element<_Ip, tuple<_Tp...> >::type type; - return static_cast >::type&&>( + return static_cast( static_cast<__tuple_leaf<_Ip, type>&&>(__t.base_).get()); }