Skip to content

Commit f961f9a

Browse files
committed
Clang!
1 parent 6a54d02 commit f961f9a

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

src/Wippersnapper_V2.h

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@
3030
*/
3131
#ifdef WS_DEBUG
3232
#define WS_DEBUG_PRINT(...) \
33-
{ \
34-
WS_PRINTER.print(__VA_ARGS__); \
35-
} /**< Print debug message to serial */
33+
{ WS_PRINTER.print(__VA_ARGS__); } /**< Print debug message to serial */
3634
#define WS_DEBUG_PRINTLN(...) \
3735
{ \
3836
WS_PRINTER.println(__VA_ARGS__); \
@@ -44,11 +42,9 @@
4442
} /**< Print debug message in hexadecimal */
4543
#else
4644
#define WS_DEBUG_PRINT(...) \
47-
{ \
48-
} /**< Debug print */
45+
{} /**< Debug print */
4946
#define WS_DEBUG_PRINTLN(...) \
50-
{ \
51-
} /**< Debug println */
47+
{} /**< Debug println */
5248
#endif
5349

5450
/*!

0 commit comments

Comments
 (0)