aboutsummaryrefslogtreecommitdiff
path: root/src/include/microhttpd2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/microhttpd2.h')
-rw-r--r--src/include/microhttpd2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/microhttpd2.h b/src/include/microhttpd2.h
index 5a878533..4a4541fa 100644
--- a/src/include/microhttpd2.h
+++ b/src/include/microhttpd2.h
@@ -260,7 +260,7 @@ typedef SOCKET MHD_socket;
260/* GCC >= 5.0 or clang >= 2.9 */ 260/* GCC >= 5.0 or clang >= 2.9 */
261#define _MHD_DEPR_FUNC(msg) __attribute__((deprecated (msg))) 261#define _MHD_DEPR_FUNC(msg) __attribute__((deprecated (msg)))
262#elif defined(__clang__) || __GNUC__ + 0 > 3 || (__GNUC__ + 0 == 3 && \ 262#elif defined(__clang__) || __GNUC__ + 0 > 3 || (__GNUC__ + 0 == 3 && \
263 __GNUC_MINOR__ + 0 >= 1) 263 __GNUC_MINOR__ + 0 >= 1)
264/* 3.1 <= GCC < 5.0 or clang < 2.9 */ 264/* 3.1 <= GCC < 5.0 or clang < 2.9 */
265/* old GCC-style deprecation do not support custom messages */ 265/* old GCC-style deprecation do not support custom messages */
266#define _MHD_DEPR_FUNC(msg) __attribute__((__deprecated__)) 266#define _MHD_DEPR_FUNC(msg) __attribute__((__deprecated__))