Issue 164282
Summary [clang-format] Bug - clang-format keeps appending `\` when `ReflowComments: Never` and `ColumnLimit: 0`
Labels clang-format
Assignees
Reporter sebastianmueller01
    With the following source
```c
#define FOO (1U) // comment
                 // comment
```

and the following config:
```yml
ColumnLimit: 0
ReflowComments: Never
```

Running clang-format once:
```c
#define FOO (1U) // comment \
                 // comment
```

Running clang-format a second time:
```c
#define FOO (1U) // comment \ \
 // comment
```

etc
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to