We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34c4aca commit 6078d1cCopy full SHA for 6078d1c
src/internal_modules/roc_address/target_berkley/roc_address/socket_addr.cpp
@@ -151,7 +151,9 @@ int SocketAddr::port() const {
151
#define IN_MULTICAST_U(i) IN_MULTICAST(i)
152
#else
153
// Defined as (((long)(i) & 0xf0000000) == 0xe0000000) in Windows, causes Wsign-conversion
154
-#define IN_MULTICAST_U(i) (((unsigned long)(i)&0xf0000000u) == 0xe0000000u)
+// clang-format off
155
+#define IN_MULTICAST_U(i) (((unsigned long)(i) & 0xf0000000u) == 0xe0000000u)
156
+// clang-format on
157
#endif
158
159
bool SocketAddr::is_multicast() const {
0 commit comments