<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 - clang-format messes up comment indentations"
   href="https://bugs.llvm.org/show_bug.cgi?id=34649">34649</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>clang-format messes up comment indentations
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>clang
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>5.0
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>All
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>normal
          </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>clemensgru@gmail.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>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</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>