<html>
<head>
<base href="https://bugs.llvm.org/">
</head>
<body><table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Bug ID</th>
<td><a class="bz_bug_link
bz_status_NEW "
title="NEW - When breaking a comment and placing the second part on a new line, libformat should leave one whitespace between the text and the right-most star in C-style comments"
href="https://bugs.llvm.org/show_bug.cgi?id=39803">39803</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>When breaking a comment and placing the second part on a new line, libformat should leave one whitespace between the text and the right-most star in C-style comments
</td>
</tr>
<tr>
<th>Product</th>
<td>clang
</td>
</tr>
<tr>
<th>Version</th>
<td>unspecified
</td>
</tr>
<tr>
<th>Hardware</th>
<td>PC
</td>
</tr>
<tr>
<th>OS</th>
<td>Linux
</td>
</tr>
<tr>
<th>Status</th>
<td>NEW
</td>
</tr>
<tr>
<th>Severity</th>
<td>enhancement
</td>
</tr>
<tr>
<th>Priority</th>
<td>P
</td>
</tr>
<tr>
<th>Component</th>
<td>Formatter
</td>
</tr>
<tr>
<th>Assignee</th>
<td>unassignedclangbugs@nondot.org
</td>
</tr>
<tr>
<th>Reporter</th>
<td>ehsan@mozilla.com
</td>
</tr>
<tr>
<th>CC</th>
<td>djasper@google.com, klimek@google.com, llvm-bugs@lists.llvm.org
</td>
</tr></table>
<p>
<div>
<pre>In C-style comments, some code can have the following pattern:
/*
*
**/
When breaking comments across lines like this, libformat seems to put the next
line at the position of the left-most star + 2 to the right, which doesn't
leave enough whitespace between the text and the right-most star.
See the following test case which demonstrates the problem:
$ cat test.cpp
/*
* Hello world, this is a comment that is longer than eighty characters
looooong!!!!
**/
$ clang-format -style=Google test.cpp
/*
* Hello world, this is a comment that is longer than eighty characters
*looooong!!!!
**/
(Bugzilla may wrap lines, but in the test case, all of the text is on the same
line.)</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are on the CC list for the bug.</li>
</ul>
</body>
</html>