From aae63566dc6b33da741364dec97fd7f34d5efb3a Mon Sep 17 00:00:00 2001 From: "Stephan T. Lavavej" Date: Fri, 11 Aug 2017 20:53:53 +0000 Subject: [libcxx] [test] Rename _Tp to T. NFCI. This improves readability and (theoretically) improves portability, as _Ugly names are reserved. llvm-svn: 310758 --- .../function.objects/logical.operations/transparent.pass.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libcxx/test/std/utilities/function.objects/logical.operations') diff --git a/libcxx/test/std/utilities/function.objects/logical.operations/transparent.pass.cpp b/libcxx/test/std/utilities/function.objects/logical.operations/transparent.pass.cpp index 00e513ec546..b915863f29c 100644 --- a/libcxx/test/std/utilities/function.objects/logical.operations/transparent.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/logical.operations/transparent.pass.cpp @@ -11,7 +11,7 @@ #include #include -template +template struct is_transparent { private: @@ -19,7 +19,7 @@ private: template static __two __test(...); template static char __test(typename _Up::is_transparent* = 0); public: - static const bool value = sizeof(__test<_Tp>(0)) == 1; + static const bool value = sizeof(__test(0)) == 1; }; -- cgit v1.2.3