From 35258cb6c3c000a7c8869b2a516bddecc71cd570 Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Fri, 4 Oct 2019 01:35:03 +0200 Subject: [PATCH] Suppress broken documentation warnings in OpenSSL --- src/SSLSocket.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/SSLSocket.h b/src/SSLSocket.h index 43a4ce9..8a626b7 100644 --- a/src/SSLSocket.h +++ b/src/SSLSocket.h @@ -21,7 +21,14 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#ifdef __clang__ +# pragma clang diagnostic push +# pragma clang diagnostic ignored "-Wdocumentation" +#endif #include +#ifdef __clang__ +# pragma clang diagnostic pop +#endif #import #import