File tree Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ AlignTrailingComments:
44
44
AllowAllArgumentsOnNextLine : true
45
45
AllowAllParametersOfDeclarationOnNextLine : true
46
46
AllowBreakBeforeNoexceptSpecifier : Never
47
- AllowShortBlocksOnASingleLine : Never
47
+ AllowShortBlocksOnASingleLine : true
48
48
AllowShortCaseLabelsOnASingleLine : false
49
49
AllowShortCompoundRequirementOnASingleLine : true
50
50
AllowShortEnumsOnASingleLine : true
Original file line number Diff line number Diff line change 49
49
// Define actual debug output functions when necessary.
50
50
#ifdef WS_DEBUG
51
51
#define WS_DEBUG_PRINT (...) \
52
- { \
53
- WS_PRINTER.print (__VA_ARGS__); \
54
- } // /< Prints debug output.
52
+ { WS_PRINTER.print (__VA_ARGS__); } // /< Prints debug output.
55
53
#define WS_DEBUG_PRINTLN (...) \
56
- { \
57
- WS_PRINTER.println (__VA_ARGS__); \
58
- } // /< Prints line from debug output.
54
+ { WS_PRINTER.println (__VA_ARGS__); } // /< Prints line from debug output.
59
55
#define WS_DEBUG_PRINTHEX (...) \
60
- { \
61
- WS_PRINTER.print (__VA_ARGS__, HEX); \
62
- } // /< Prints debug output.
56
+ { WS_PRINTER.print (__VA_ARGS__, HEX); } // /< Prints debug output.
63
57
#else
64
58
#define WS_DEBUG_PRINT (...) \
65
- { \
66
- } // /< Prints debug output
59
+ {} // /< Prints debug output
67
60
#define WS_DEBUG_PRINTLN (...) \
68
- { \
69
- } // /< Prints line from debug output.
61
+ {} // /< Prints line from debug output.
70
62
#endif
71
63
72
64
#define WS_DELAY_WITH_WDT (timeout ) \
You can’t perform that action at this time.
0 commit comments