<html>
<head>
<base href="http://llvm.org/bugs/" />
</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 SpaceBeforeParens option behaves oddly with C++ delete"
href="http://llvm.org/bugs/show_bug.cgi?id=19536">19536</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>clang-format SpaceBeforeParens option behaves oddly with C++ delete
</td>
</tr>
<tr>
<th>Product</th>
<td>new-bugs
</td>
</tr>
<tr>
<th>Version</th>
<td>trunk
</td>
</tr>
<tr>
<th>Hardware</th>
<td>Macintosh
</td>
</tr>
<tr>
<th>OS</th>
<td>MacOS X
</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>new bugs
</td>
</tr>
<tr>
<th>Assignee</th>
<td>unassignedbugs@nondot.org
</td>
</tr>
<tr>
<th>Reporter</th>
<td>sean@rogue-research.com
</td>
</tr>
<tr>
<th>CC</th>
<td>llvmbugs@cs.uiuc.edu
</td>
</tr>
<tr>
<th>Classification</th>
<td>Unclassified
</td>
</tr></table>
<p>
<div>
<pre>Basically, clang-format (svn trunk r206916, i.e. yesterday) transforms this:
------------
int main(void)
{
void* ptr1 = 0;
void* ptr2 = 0;
free(ptr1);
delete(ptr2);
}
------------
into this:
------------
int main(void)
{
void* ptr1 = 0;
void* ptr2 = 0;
free(ptr1);
delete (ptr2);
}
------------
Note the space added after "delete".
It does this if SpaceBeforeParens is set to either 'Never',
'ControlStatements', or 'Always', i.e. with all 3 possibilities.
The spacing after "free" behaves as you would expect from the SpaceBeforeParens
documentation.
I don't see why C++ delete should be special-cased.</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>