summaryrefslogtreecommitdiffstats
path: root/test/utilities/meta/meta.unary/meta.unary.cat/void.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/utilities/meta/meta.unary/meta.unary.cat/void.pass.cpp')
-rw-r--r--test/utilities/meta/meta.unary/meta.unary.cat/void.pass.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utilities/meta/meta.unary/meta.unary.cat/void.pass.cpp b/test/utilities/meta/meta.unary/meta.unary.cat/void.pass.cpp
index a17e95b87..cfcff70a9 100644
--- a/test/utilities/meta/meta.unary/meta.unary.cat/void.pass.cpp
+++ b/test/utilities/meta/meta.unary/meta.unary.cat/void.pass.cpp
@@ -1 +1 @@
-//===----------------------------------------------------------------------===// // // ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚThe LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // type_traits // void #include <type_traits> template <class T> void test_void_imp() { static_assert( std::is_void<T>::value, ""); static_assert(!std::is_integral<T>::value, ""); static_assert(!std::is_floating_point<T>::value, ""); static_assert(!std::is_array<T>::value, ""); static_assert(!std::is_pointer<T>::value, ""); static_assert(!std::is_lvalue_reference<T>::value, ""); static_assert(!std::is_rvalue_reference<T>::value, ""); static_assert(!std::is_member_object_pointer<T>::value, ""); static_assert(!std::is_member_function_pointer<T>::value, ""); static_assert(!std::is_enum<T>::value, ""); static_assert(!std::is_union<T>::value, ""); static_assert(!std::is_class<T>::value, ""); static_assert(!std::is_function<T>::value, ""); } template <class T> void test_void() { test_void_imp<T>(); test_void_imp<const T>(); test_void_imp<volatile T>(); test_void_imp<const volatile T>(); } int main() { test_void<void>(); } \ No newline at end of file
+//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // type_traits // void #include <type_traits> template <class T> void test_void_imp() { static_assert( std::is_void<T>::value, ""); static_assert(!std::is_integral<T>::value, ""); static_assert(!std::is_floating_point<T>::value, ""); static_assert(!std::is_array<T>::value, ""); static_assert(!std::is_pointer<T>::value, ""); static_assert(!std::is_lvalue_reference<T>::value, ""); static_assert(!std::is_rvalue_reference<T>::value, ""); static_assert(!std::is_member_object_pointer<T>::value, ""); static_assert(!std::is_member_function_pointer<T>::value, ""); static_assert(!std::is_enum<T>::value, ""); static_assert(!std::is_union<T>::value, ""); static_assert(!std::is_class<T>::value, ""); static_assert(!std::is_function<T>::value, ""); } template <class T> void test_void() { test_void_imp<T>(); test_void_imp<const T>(); test_void_imp<volatile T>(); test_void_imp<const volatile T>(); } int main() { test_void<void>(); } \ No newline at end of file