With the following source
#define FOO (1U) // comment
// comment
and the following config:
ColumnLimit: 0
ReflowComments: Never
Running clang-format once:
#define FOO (1U) // comment \
// comment
Running clang-format a second time:
#define FOO (1U) // comment \ \
// comment
etc