<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jul 22, 2014 at 12:24 PM, Eli Bendersky <span dir="ltr"><<a href="mailto:eliben@google.com" target="_blank">eliben@google.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"><div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">

<div class="">On Tue, Jul 22, 2014 at 12:16 PM, James Dennett <span dir="ltr"><<a href="mailto:james.dennett@gmail.com" target="_blank">james.dennett@gmail.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"><div>On Tue, Jul 22, 2014 at 11:55 AM, Sean McBride <<a href="mailto:sean@rogue-research.com" target="_blank">sean@rogue-research.com</a>> wrote:<br>



> Hi all,<br>
><br>
> Try as I may, I can't find if there is a setting to _stop_ clang-format from changing this:<br>
><br>
>         float pattern[] = {7.0f, 1.0f};<br>
><br>
> into this:<br>
><br>
>         float pattern[] = { 7.0f, 1.0f };<br>
><br>
> Is there one?<br>
<br>
</div>Yes... but I don't know which specific setting it is.  (In Google<br>
style, clang-format will rewrite the latter to the former.)<br></blockquote><div><br></div></div><div>Could this be Cpp11BracedListStyle ?</div><span class=""><font color="#888888"><br></font></span></div></div></div></blockquote>

<div><br></div><div>eliben@ebendersky: ~/llvm/llvm_svn_rw$ cat > foo.cpp</div><div>int arr = {7, 9};</div><div>eliben@ebendersky: ~/llvm/llvm_svn_rw$ $LLVMSVN/clang-format -style="{Cpp11BracedListStyle: true}" foo.cpp</div>

<div>int arr = {7, 9};</div><div>eliben@ebendersky: ~/llvm/llvm_svn_rw$ $LLVMSVN/clang-format -style="{Cpp11BracedListStyle: false}" foo.cpp</div><div>int arr = { 7, 9 };</div><div><br></div><div><br></div><div>

 </div></div><br></div></div>