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:
4444AllowAllArgumentsOnNextLine : true
4545AllowAllParametersOfDeclarationOnNextLine : true
4646AllowBreakBeforeNoexceptSpecifier : Never
47- AllowShortBlocksOnASingleLine : Never
47+ AllowShortBlocksOnASingleLine : true
4848AllowShortCaseLabelsOnASingleLine : false
4949AllowShortCompoundRequirementOnASingleLine : true
5050AllowShortEnumsOnASingleLine : true
Original file line number Diff line number Diff line change 4949// Define actual debug output functions when necessary.
5050#ifdef WS_DEBUG
5151#define WS_DEBUG_PRINT (...) \
52- { \
53- WS_PRINTER.print (__VA_ARGS__); \
54- } // /< Prints debug output.
52+ { WS_PRINTER.print (__VA_ARGS__); } // /< Prints debug output.
5553#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.
5955#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.
6357#else
6458#define WS_DEBUG_PRINT (...) \
65- { \
66- } // /< Prints debug output
59+ {} // /< Prints debug output
6760#define WS_DEBUG_PRINTLN (...) \
68- { \
69- } // /< Prints line from debug output.
61+ {} // /< Prints line from debug output.
7062#endif
7163
7264#define WS_DELAY_WITH_WDT (timeout ) \
You can’t perform that action at this time.
0 commit comments