diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2015-09-15 17:12:49 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2015-09-15 17:12:49 +0000 |
commit | 20ade932fbdfaf354458e48a7eae9d2d340975fe (patch) | |
tree | d4ee4fc499dd3b774ea56ded69163154c46fac6c /libcxx/test/std/language.support | |
parent | 32764b591797df963a6a6025b8bea625c7a55a81 (diff) | |
download | bcm5719-llvm-20ade932fbdfaf354458e48a7eae9d2d340975fe.tar.gz bcm5719-llvm-20ade932fbdfaf354458e48a7eae9d2d340975fe.zip |
Suppress some warnings in the tests that snuck in. That 'tmpnam' is deprecated doesn't change the fact that we have to test it.
llvm-svn: 247704
Diffstat (limited to 'libcxx/test/std/language.support')
-rw-r--r-- | libcxx/test/std/language.support/support.types/nullptr_t.pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/test/std/language.support/support.types/nullptr_t.pass.cpp b/libcxx/test/std/language.support/support.types/nullptr_t.pass.cpp index 99bbd3e9154..1cc2aa62032 100644 --- a/libcxx/test/std/language.support/support.types/nullptr_t.pass.cpp +++ b/libcxx/test/std/language.support/support.types/nullptr_t.pass.cpp @@ -54,7 +54,7 @@ void test_comparisons() #if defined(__clang__) #pragma clang diagnostic push -#pragma diagnostic ignored "-Wnull-conversion" +#pragma clang diagnostic ignored "-Wnull-conversion" #endif void test_nullptr_conversions() { { |