<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Sep 25, 2014 at 6:19 PM, Damian Lezama <span dir="ltr"><<a href="mailto:Damian.Lezama@riverbed.com" target="_blank">Damian.Lezama@riverbed.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Hi,<br>
<br>
Our code standards ask for the return type in its own line for function definitions (if not inside the class declaration), how can I make that work?<br>
<br>
Header:<br>
class A<br>
{<br>
    int a() { }<br>
    int b();<br>
}<br>
<br>
Source:<br>
int<br>
A::b()<br>
{<br>
    // something<br>
}<br></blockquote><div><br></div><div>There's the <strong>AlwaysBreakAfterDefinitionReturnType </strong> style option. It (along with the others) is documented at: <a href="http://clang.llvm.org/docs/ClangFormatStyleOptions.html">http://clang.llvm.org/docs/ClangFormatStyleOptions.html</a></div><div><br></div><div>Eli</div><div><br></div></div></div></div>