aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/meta.cpp
diff options
context:
space:
mode:
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));