mirror of
https://github.com/llvm-mirror/libcxx.git
synced 2025-10-22 07:51:39 +08:00
[libcxx] [test] Rename _Up to U, etc. NFCI.
This improves readability and (theoretically) improves portability, as _Ugly names are reserved. This performs additional de-uglification, so all of these tests follow the example of iterator.traits/empty.pass.cpp. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@310761 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -25,8 +25,8 @@ struct has_value_type
|
|||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
struct two {char lx; char lxx;};
|
struct two {char lx; char lxx;};
|
||||||
template <class _Up> static two test(...);
|
template <class U> static two test(...);
|
||||||
template <class _Up> static char test(typename _Up::value_type* = 0);
|
template <class U> static char test(typename U::value_type* = 0);
|
||||||
public:
|
public:
|
||||||
static const bool value = sizeof(test<T>(0)) == 1;
|
static const bool value = sizeof(test<T>(0)) == 1;
|
||||||
};
|
};
|
||||||
|
@@ -15,11 +15,11 @@ template <class T>
|
|||||||
struct is_transparent
|
struct is_transparent
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
struct __two {char __lx; char __lxx;};
|
struct two {char lx; char lxx;};
|
||||||
template <class _Up> static __two __test(...);
|
template <class U> static two test(...);
|
||||||
template <class _Up> static char __test(typename _Up::is_transparent* = 0);
|
template <class U> static char test(typename U::is_transparent* = 0);
|
||||||
public:
|
public:
|
||||||
static const bool value = sizeof(__test<T>(0)) == 1;
|
static const bool value = sizeof(test<T>(0)) == 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@@ -15,11 +15,11 @@ template <class T>
|
|||||||
struct is_transparent
|
struct is_transparent
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
struct __two {char __lx; char __lxx;};
|
struct two {char lx; char lxx;};
|
||||||
template <class _Up> static __two __test(...);
|
template <class U> static two test(...);
|
||||||
template <class _Up> static char __test(typename _Up::is_transparent* = 0);
|
template <class U> static char test(typename U::is_transparent* = 0);
|
||||||
public:
|
public:
|
||||||
static const bool value = sizeof(__test<T>(0)) == 1;
|
static const bool value = sizeof(test<T>(0)) == 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@@ -15,11 +15,11 @@ template <class T>
|
|||||||
struct is_transparent
|
struct is_transparent
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
struct __two {char __lx; char __lxx;};
|
struct two {char lx; char lxx;};
|
||||||
template <class _Up> static __two __test(...);
|
template <class U> static two test(...);
|
||||||
template <class _Up> static char __test(typename _Up::is_transparent* = 0);
|
template <class U> static char test(typename U::is_transparent* = 0);
|
||||||
public:
|
public:
|
||||||
static const bool value = sizeof(__test<T>(0)) == 1;
|
static const bool value = sizeof(test<T>(0)) == 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@@ -15,11 +15,11 @@ template <class T>
|
|||||||
struct is_transparent
|
struct is_transparent
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
struct __two {char __lx; char __lxx;};
|
struct two {char lx; char lxx;};
|
||||||
template <class _Up> static __two __test(...);
|
template <class U> static two test(...);
|
||||||
template <class _Up> static char __test(typename _Up::is_transparent* = 0);
|
template <class U> static char test(typename U::is_transparent* = 0);
|
||||||
public:
|
public:
|
||||||
static const bool value = sizeof(__test<T>(0)) == 1;
|
static const bool value = sizeof(test<T>(0)) == 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user