forked from OSchip/llvm-project
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
This commit is contained in:
parent
32764b5917
commit
20ade932fb
|
@ -80,6 +80,7 @@
|
|||
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wformat-zero-length"
|
||||
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
||||
|
||||
int main()
|
||||
{
|
||||
|
|
|
@ -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() {
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue