mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-26 18:42:43 +01:00
Problem: formatting not up to date
Solution: run make clang-format-diff
This commit is contained in:
0
include/zmq.h
Executable file → Normal file
0
include/zmq.h
Executable file → Normal file
@@ -77,7 +77,10 @@
|
||||
// This macro is used to avoid-variable warning. If used with an expression,
|
||||
// the sizeof is not evaluated to avoid polluting the assembly code.
|
||||
#ifdef NDEBUG
|
||||
#define ASSERT_EXPR_SAFE(x) do { (void)sizeof(x);} while (0)
|
||||
#define ASSERT_EXPR_SAFE(x) \
|
||||
do { \
|
||||
(void) sizeof (x); \
|
||||
} while (0)
|
||||
#else
|
||||
#define ASSERT_EXPR_SAFE(x) assert (x)
|
||||
#endif
|
||||
|
||||
0
src/tcp_connecter.cpp
Executable file → Normal file
0
src/tcp_connecter.cpp
Executable file → Normal file
0
tests/test_reconnect_options.cpp
Executable file → Normal file
0
tests/test_reconnect_options.cpp
Executable file → Normal file
Reference in New Issue
Block a user