diff --git a/test/libcxx/depr/depr.function.objects/depr.adaptors.cxx1z.pass.cpp b/test/libcxx/depr/depr.function.objects/depr.adaptors.cxx1z.pass.cpp index 7967e76d9..beb560800 100644 --- a/test/libcxx/depr/depr.function.objects/depr.adaptors.cxx1z.pass.cpp +++ b/test/libcxx/depr/depr.function.objects/depr.adaptors.cxx1z.pass.cpp @@ -37,10 +37,10 @@ int main() typedef std::pointer_to_binary_function PBF; static_assert( - (std::is_same(identity))>::value), + (std::is_same(identity)))>::value), ""); static_assert( - (std::is_same(sum))>::value), + (std::is_same(sum)))>::value), ""); assert((std::ptr_fun(identity)(4) == 4)); @@ -54,9 +54,9 @@ int main() typedef std::const_mem_fun_ref_t CMFR; static_assert( - (std::is_same::value), ""); - static_assert((std::is_same::value), + (std::is_same::value), ""); + static_assert((std::is_same::value), ""); assert((std::mem_fun_ref(&Foo::zero)(f) == 0));