diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2015-11-10 16:04:13 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2015-11-10 16:04:13 +0000 |
commit | 41277d179f9a08f33497ab50afefe7fe2ab25315 (patch) | |
tree | 928d19f674c5f8040662770b297dcbef296a8b5a | |
parent | d17405fe9cc054103226ddd280402f5cb6a7e0e2 (diff) | |
download | bcm5719-llvm-41277d179f9a08f33497ab50afefe7fe2ab25315.tar.gz bcm5719-llvm-41277d179f9a08f33497ab50afefe7fe2ab25315.zip |
std:: qualify ptrdiff_t in the test. Thanks to Walter for the catch
llvm-svn: 252613
-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()); |