diff --git a/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp b/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp index 85b147266..dbbbe159f 100644 --- a/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp +++ b/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp @@ -11,8 +11,9 @@ // common_type -#include +#include #include +#include #include "test_macros.h" @@ -45,7 +46,6 @@ namespace std template <> struct common_type< ::S, long> {}; template <> struct common_type > {}; - template <> struct common_type< ::X > {}; template <> struct common_type< ::X, ::X > {}; } @@ -97,7 +97,6 @@ void test_bullet_two() { static_assert(std::is_same, int volatile*>::value, ""); static_assert(std::is_same, void(*)()>::value, ""); - static_assert(no_common_type >::value, ""); static_assert(no_common_type >::value, ""); } diff --git a/test/std/utilities/meta/meta.unary/meta.unary.prop/is_assignable.pass.cpp b/test/std/utilities/meta/meta.unary/meta.unary.prop/is_assignable.pass.cpp index 8d63a2349..4808a4dc9 100644 --- a/test/std/utilities/meta/meta.unary/meta.unary.prop/is_assignable.pass.cpp +++ b/test/std/utilities/meta/meta.unary/meta.unary.prop/is_assignable.pass.cpp @@ -59,8 +59,6 @@ struct E template struct X { T t; }; -struct Incomplete; - int main() { test_is_assignable ();