diff options
author | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-08-11 20:53:53 +0000 |
---|---|---|
committer | Stephan T. Lavavej <stl@exchange.microsoft.com> | 2017-08-11 20:53:53 +0000 |
commit | aae63566dc6b33da741364dec97fd7f34d5efb3a (patch) | |
tree | 738e4f26d5347cb31b0479081376c06a78d4a19e /libcxx/test/std/localization | |
parent | be7e0013695c1efcb84a9fdc7127ef155f6c9503 (diff) | |
download | bcm5719-llvm-aae63566dc6b33da741364dec97fd7f34d5efb3a.tar.gz bcm5719-llvm-aae63566dc6b33da741364dec97fd7f34d5efb3a.zip |
[libcxx] [test] Rename _Tp to T. NFCI.
This improves readability and (theoretically) improves portability,
as _Ugly names are reserved.
llvm-svn: 310758
Diffstat (limited to 'libcxx/test/std/localization')
3 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/test/std/localization/locale.categories/category.ctype/ctype_base.pass.cpp b/libcxx/test/std/localization/locale.categories/category.ctype/ctype_base.pass.cpp index 06c171f56da..c260e34e3ac 100644 --- a/libcxx/test/std/localization/locale.categories/category.ctype/ctype_base.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.ctype/ctype_base.pass.cpp @@ -36,8 +36,8 @@ #include <locale> #include <cassert> -template <class _Tp> -void test(const _Tp &) {} +template <class T> +void test(const T &) {} int main() { diff --git a/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/types.pass.cpp b/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/types.pass.cpp index 323d856a392..8998bf00465 100644 --- a/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/types.pass.cpp +++ b/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/types.pass.cpp @@ -27,8 +27,8 @@ #include <locale> #include <type_traits> -template <class _Tp> -void test(const _Tp &) {} +template <class T> +void test(const T &) {} int main() { diff --git a/libcxx/test/std/localization/locales/locale/locale.types/locale.category/category.pass.cpp b/libcxx/test/std/localization/locales/locale/locale.types/locale.category/category.pass.cpp index 8fc311a5bd8..dbab8212a73 100644 --- a/libcxx/test/std/localization/locales/locale/locale.types/locale.category/category.pass.cpp +++ b/libcxx/test/std/localization/locales/locale/locale.types/locale.category/category.pass.cpp @@ -20,8 +20,8 @@ #include <type_traits> #include <cassert> -template <class _Tp> -void test(const _Tp &) {} +template <class T> +void test(const T &) {} int main() |