summaryrefslogtreecommitdiffstats
path: root/contrib/libs/nghttp3/lib/nghttp3_macro.h
diff options
context:
space:
mode:
authorrobot-contrib <[email protected]>2025-01-09 14:48:07 +0300
committerrobot-contrib <[email protected]>2025-01-09 15:34:05 +0300
commit99679ceb52dc0e5ed023f32855dd9854dfa90ac8 (patch)
tree95ac959195008c0d950b9257652e5748d8f933cc /contrib/libs/nghttp3/lib/nghttp3_macro.h
parentef8c4a245b37b3224dede06631ac95e4a1b3f9e6 (diff)
Update contrib/libs/nghttp3 to 1.7.0
commit_hash:c10153839fd4ce0867242e0d90f204db6b9b64c1
Diffstat (limited to 'contrib/libs/nghttp3/lib/nghttp3_macro.h')
-rw-r--r--contrib/libs/nghttp3/lib/nghttp3_macro.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/contrib/libs/nghttp3/lib/nghttp3_macro.h b/contrib/libs/nghttp3/lib/nghttp3_macro.h
index a4e1dfea3cd..ffe0ea70924 100644
--- a/contrib/libs/nghttp3/lib/nghttp3_macro.h
+++ b/contrib/libs/nghttp3/lib/nghttp3_macro.h
@@ -48,27 +48,27 @@
#define nghttp3_max_def(SUFFIX, T) \
static inline T nghttp3_max_##SUFFIX(T a, T b) { return a < b ? b : a; }
-nghttp3_max_def(int8, int8_t);
-nghttp3_max_def(int16, int16_t);
-nghttp3_max_def(int32, int32_t);
-nghttp3_max_def(int64, int64_t);
-nghttp3_max_def(uint8, uint8_t);
-nghttp3_max_def(uint16, uint16_t);
-nghttp3_max_def(uint32, uint32_t);
-nghttp3_max_def(uint64, uint64_t);
-nghttp3_max_def(size, size_t);
+nghttp3_max_def(int8, int8_t)
+nghttp3_max_def(int16, int16_t)
+nghttp3_max_def(int32, int32_t)
+nghttp3_max_def(int64, int64_t)
+nghttp3_max_def(uint8, uint8_t)
+nghttp3_max_def(uint16, uint16_t)
+nghttp3_max_def(uint32, uint32_t)
+nghttp3_max_def(uint64, uint64_t)
+nghttp3_max_def(size, size_t)
#define nghttp3_min_def(SUFFIX, T) \
static inline T nghttp3_min_##SUFFIX(T a, T b) { return a < b ? a : b; }
-nghttp3_min_def(int8, int8_t);
-nghttp3_min_def(int16, int16_t);
-nghttp3_min_def(int32, int32_t);
-nghttp3_min_def(int64, int64_t);
-nghttp3_min_def(uint8, uint8_t);
-nghttp3_min_def(uint16, uint16_t);
-nghttp3_min_def(uint32, uint32_t);
-nghttp3_min_def(uint64, uint64_t);
-nghttp3_min_def(size, size_t);
+nghttp3_min_def(int8, int8_t)
+nghttp3_min_def(int16, int16_t)
+nghttp3_min_def(int32, int32_t)
+nghttp3_min_def(int64, int64_t)
+nghttp3_min_def(uint8, uint8_t)
+nghttp3_min_def(uint16, uint16_t)
+nghttp3_min_def(uint32, uint32_t)
+nghttp3_min_def(uint64, uint64_t)
+nghttp3_min_def(size, size_t)
#endif /* !defined(NGHTTP3_MACRO_H) */