aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-04-23 15:20:46 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-04-23 15:21:20 +0300
commit763db7922a1a0dac570f3090ddc0fdb84b6560e7 (patch)
treef72c4bdb6f60f6499038f6f8f59881b98f0ae008 /src/include
parent8c87442ffc677fd41c31c9a3fde0d685ef5ae65d (diff)
downloadlibmicrohttpd-763db7922a1a0dac570f3090ddc0fdb84b6560e7.tar.gz
libmicrohttpd-763db7922a1a0dac570f3090ddc0fdb84b6560e7.zip
microhttpd2.h: fixed code style
Diffstat (limited to 'src/include')
-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__))