Suppress broken documentation warnings in OpenSSL
This commit is contained in:
parent
794781e979
commit
35258cb6c3
1 changed files with 7 additions and 0 deletions
|
@ -21,7 +21,14 @@
|
||||||
* POSSIBILITY OF SUCH DAMAGE.
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef __clang__
|
||||||
|
# pragma clang diagnostic push
|
||||||
|
# pragma clang diagnostic ignored "-Wdocumentation"
|
||||||
|
#endif
|
||||||
#include <openssl/ssl.h>
|
#include <openssl/ssl.h>
|
||||||
|
#ifdef __clang__
|
||||||
|
# pragma clang diagnostic pop
|
||||||
|
#endif
|
||||||
|
|
||||||
#import <ObjFW/OFTCPSocket.h>
|
#import <ObjFW/OFTCPSocket.h>
|
||||||
#import <ObjFW/OFTLSSocket.h>
|
#import <ObjFW/OFTLSSocket.h>
|
||||||
|
|
Reference in a new issue