<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>Issue</th>
<td>
<a href=https://github.com/llvm/llvm-project/issues/67903>67903</a>
</td>
</tr>
<tr>
<th>Summary</th>
<td>
clang-format-18 DTOR ~ detached from cllass name
</td>
</tr>
<tr>
<th>Labels</th>
<td>
clang-format
</td>
</tr>
<tr>
<th>Assignees</th>
<td>
</td>
</tr>
<tr>
<th>Reporter</th>
<td>
kalman5
</td>
</tr>
</table>
<pre>
The following snippet
```
class LongClassNameToShowTheIssue {
public:
class AndAnotherLongClassNameToShowTheIssue {
AndAnotherLongClassNameToShowTheIssue();
~AndAnotherLongClassNameToShowTheIssue();
}
};
LongClassNameToShowTheIssue::AndAnotherLongClassNameToShowTheIssue::
AndAnotherLongClassNameToShowTheIssue() {}
LongClassNameToShowTheIssue::AndAnotherLongClassNameToShowTheIssue::
~AndAnotherLongClassNameToShowTheIssue() {}
```
formattted with clang-format-17 using the following configuration
```
Language: Cpp
```
is formatted in the following way using clang-format-18
```
class LongClassNameToShowTheIssue {
public:
class AndAnotherLongClassNameToShowTheIssue {
AndAnotherLongClassNameToShowTheIssue();
~AndAnotherLongClassNameToShowTheIssue();
}
};
LongClassNameToShowTheIssue::AndAnotherLongClassNameToShowTheIssue::
AndAnotherLongClassNameToShowTheIssue() {}
LongClassNameToShowTheIssue::AndAnotherLongClassNameToShowTheIssue::~
AndAnotherLongClassNameToShowTheIssue() {}
```
as you can see the DTOR ~ is detached from class name
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJzslc-K2zAQxp9GvogEWf5_0CG7IVBYWmjzAmNrbKuVJWPJDbnk2Ysd724TSsi2tPSwYGRbzIx-n_QNAudUYxAFSR5Isg1g9K0dxDfQHZgkKK08in2LtLZa24MyDXVG9T16wraEbZYxZcsz_1YanKNP1jSP09dH6HBvv7T2sG_xg3MjUpI9nEP7sdSqItFSiNJz7sbIjbG-xeGuKvfFE54TXpDoOen0W1kk2y6is-3L7Hm8VSXakGhz34Jz6NuFzdvxAve3gN6yaZdElx45j7UdOvDeo6QH5dvp9E2zOs-uwoyObnKcv_BfZU2tmnEAr6y54cInMM0IzYRPH_v-BoVydAFBSZW5Wu8Ax4Xjki5_74B_0AH_TwOc_hDoV84DR492pBUY6hBn4233nz7TE1WOSvRQtShpPdhusYWBDgMpIllEBQQowrRIwzhmeRa0IovDUqY1zyMmY4lQylQmMuRFHcqizspACc54FDIWsozlLFtLFqZQRrICntR1npCYYQdKr7X-3q3t0ARqkiPSrGBRoKFE7eabgvOfm4FwPt0dg5jSVuXYOBIzrZx3r4W88hrFVQs9q72W-qp1HLRove_ddAh8R_iuUb4dy3VlO8J3U_nlteoH-xUrT_huhnaE72buHwEAAP__2Nc0Kw">