diff options
-rw-r--r-- | libcxx/test/std/depr/depr.c.headers/stdint_h.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/depr/depr.c.headers/stdint_h.pass.cpp b/libcxx/test/std/depr/depr.c.headers/stdint_h.pass.cpp index 3861ee50975..92bb04e558b 100644 --- a/libcxx/test/std/depr/depr.c.headers/stdint_h.pass.cpp +++ b/libcxx/test/std/depr/depr.c.headers/stdint_h.pass.cpp @@ -223,10 +223,10 @@ int main() assert(UINTMAX_MAX == std::numeric_limits<uintmax_t>::max()); // PTRDIFF_MIN - assert(PTRDIFF_MIN == std::numeric_limits<ptrdiff_t>::min()); + assert(PTRDIFF_MIN == std::numeric_limits<std::ptrdiff_t>::min()); // PTRDIFF_MAX - assert(PTRDIFF_MAX == std::numeric_limits<ptrdiff_t>::max()); + assert(PTRDIFF_MAX == std::numeric_limits<std::ptrdiff_t>::max()); // SIG_ATOMIC_MIN assert(SIG_ATOMIC_MIN == std::numeric_limits<sig_atomic_t>::min()); |