<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'><div>I am assuming this list caters to clang-format tool too. If not, do let me know the concerned list.</div><div><br></div>Today I downloaded the clang-format plugin for Visual Studio and realized that when a function call contains 63-character string, the formatting of the function call changes. If you look at the samples below, you would find that 2nd function call got formatted correctly, whereas the 1st and last pulled the parameters down. Is this expected ? If not, any setting that i can set to get the 2nd format applied to the 1st and to the last call ? <div><div><pre style="font-family: Consolas; font-size: 13px; background: white;">RtlInitUnicodeString(
            &czString,
            L<span style="color:#a31515;">"I am going to type a string that will be 63 characters only..\n"</span>);</pre></div><div><pre style="font-family: Consolas; font-size: 13px; background: white;">
RtlInitUnicodeString(&czString, L<span style="color:#a31515;">"I am going to type a string that "</span>
                                L<span style="color:#a31515;">"will be 64 characters only...\n"</span>);</pre><pre style="font-family: Consolas; font-size: 13px; background: white;">
RtlInitAnsiString(
    azString,
    L<span style="color:#a31515;">"I am going to type a string that will be 63 characters only..\n"</span>);</pre></div></div>                                          </div></body>
</html>