Disable -Wincompatible-function-pointer-types in testlib

This commit is contained in:
Mirko Galimberti 2024-09-29 15:11:10 +02:00 committed by Akshay Arora
parent a070ec718a
commit 1143b4932b
1 changed files with 3 additions and 0 deletions

View File

@ -159,7 +159,10 @@ typedef union test_un_ {
}
- (int) getandUseImpWithDefaultValues {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
return (int)[self useImp: [self getImp] withA: 7 andB: 5];
#pragma clang diagnostic pop
}
/******************** </UNKNOWN TYPE TESTS> ***********************/