diff options
Diffstat (limited to 'libcxx/test/std/depr/depr.c.headers/stddef_h.pass.cpp')
-rw-r--r-- | libcxx/test/std/depr/depr.c.headers/stddef_h.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/depr/depr.c.headers/stddef_h.pass.cpp b/libcxx/test/std/depr/depr.c.headers/stddef_h.pass.cpp index c03c314e3bc..0c08c782a3e 100644 --- a/libcxx/test/std/depr/depr.c.headers/stddef_h.pass.cpp +++ b/libcxx/test/std/depr/depr.c.headers/stddef_h.pass.cpp @@ -38,7 +38,7 @@ int main() "std::is_signed<ptrdiff_t>::value"); static_assert(std::is_integral<ptrdiff_t>::value, "std::is_integral<ptrdiff_t>::value"); - static_assert(std::is_same<decltype(nullptr), nullptr_t>::value, + static_assert((std::is_same<decltype(nullptr), nullptr_t>::value), "decltype(nullptr) == nullptr_t"); static_assert(sizeof(nullptr_t) == sizeof(void*), "sizeof(nullptr_t) == sizeof(void*)"); |