Suppress broken documentation warnings in OpenSSL

This commit is contained in:
Jonathan Schleifer 2019-10-04 01:35:03 +02:00
parent 794781e979
commit 35258cb6c3
No known key found for this signature in database
GPG key ID: 79D21189A2D4708D

View file

@ -21,7 +21,14 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef __clang__
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wdocumentation"
#endif
#include <openssl/ssl.h>
#ifdef __clang__
# pragma clang diagnostic pop
#endif
#import <ObjFW/OFTCPSocket.h>
#import <ObjFW/OFTLSSocket.h>