aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/meta.cpp
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-10-26 16:47:01 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-10-26 16:47:01 +0200
commitc738cd56ebdafe986c7edeb2621ec25f3c0b29d9 (patch)
tree2ff118b343b69a7dd68d7ad7d898fdfdc82c58ce /test/meta.cpp
parent2fbb9932b0f517643c5f05e4056b939b73956b00 (diff)
Renamed cleantype to remove_all since it is close to remove_{const|pointer|reference}.
Diffstat (limited to 'test/meta.cpp')
-rw-r--r--test/meta.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/meta.cpp b/test/meta.cpp
index fb7d4548c..9adb95034 100644
--- a/test/meta.cpp
+++ b/test/meta.cpp
@@ -35,13 +35,13 @@ void test_meta()
VERIFY((!internal::is_same<float,float&>::value));
VERIFY((!internal::is_same<float,const float&>::value));
- VERIFY(( internal::is_same<float,internal::cleantype<const float&>::type >::value));
- VERIFY(( internal::is_same<float,internal::cleantype<const float*>::type >::value));
- VERIFY(( internal::is_same<float,internal::cleantype<const float*&>::type >::value));
- VERIFY(( internal::is_same<float,internal::cleantype<float**>::type >::value));
- VERIFY(( internal::is_same<float,internal::cleantype<float**&>::type >::value));
- VERIFY(( internal::is_same<float,internal::cleantype<float* const *&>::type >::value));
- VERIFY(( internal::is_same<float,internal::cleantype<float* const>::type >::value));
+ VERIFY(( internal::is_same<float,internal::remove_all<const float&>::type >::value));
+ VERIFY(( internal::is_same<float,internal::remove_all<const float*>::type >::value));
+ VERIFY(( internal::is_same<float,internal::remove_all<const float*&>::type >::value));
+ VERIFY(( internal::is_same<float,internal::remove_all<float**>::type >::value));
+ VERIFY(( internal::is_same<float,internal::remove_all<float**&>::type >::value));
+ VERIFY(( internal::is_same<float,internal::remove_all<float* const *&>::type >::value));
+ VERIFY(( internal::is_same<float,internal::remove_all<float* const>::type >::value));
VERIFY(( internal::is_same<float*,internal::remove_const<const float*>::type >::value));
VERIFY(( internal::is_same<float&,internal::remove_const<const float&>::type >::value));