79630795

Date: 2025-05-20 16:11:05
Score: 0.5
Natty:
Report link

In the meantime clang-format 20 does provide the new config entry BreakBinaryOperations .

The config

BasedOnStyle: Google

BreakBinaryOperations: OnePerLine
ColumnLimit: 100

produces this formatting:

#if ((CONDITION_A_SWITCH == ENABLED) || \
     (CONDITION_A_SWITCH == ENABLED) || \
     (CONDITION_A_SWITCH == ENABLED))
[...]
#endif
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: tl-photography.at