https://bugs.llvm.org/show_bug.cgi?id=34649
Bug ID: 34649
Summary: clang-format messes up comment indentations
Product: clang
Version: 5.0
Hardware: PC
OS: All
Status: NEW
Severity: normal
Priority: P
Component: Formatter
Assignee: unassignedclangb...@nondot.org
Reporter: clemens...@gmail.com
CC: djas...@google.com, kli...@google.com,
llvm-bugs@lists.llvm.org
Hi,
I tried again to format a large codebase but there are still several problems
related to comment formatting/indentation, since my last bug report #33130,
which has been fixed. However there are still several outstanding problems.
As a quick fix, I'd like to know if there is a possibility to tell clang-format
to ignore all comments completely and what you think about such a flag until
these issues are fixed?
Here is a list of problems I observed with clang-format 5.0.0
Problem 1:
unsigned int
/* a = 1, */ /* Comment A */
b = 2, /* Comment B */
c = 3; /* Comment C */
Becomes:
unsigned int
/* a = 1, */ /* Comment A */
b = 2, /* Comment B */
c = 3; /* Comment C */
Problem 2:
...
}
#endif
/* Comment belonging to #ifdef/endif */
Becomes:
...
}
#endif
/* Comment belonging to #ifdef/endif */
Problem 3:
..
{
if (a > 0)
{
/* Comment */
...
Becomes:
..
{
if (a > 0)
{
/* Comment */
...
Cheers,
Clemens
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs