<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>I haven't seen this style before, but LLVM convention is usually to put the break <i>inside</i> the braces anyway, so...</div><div><br></div><br><div><div>On Jan 17, 2013, at 21:50 , Nico Weber <<a href="mailto:nicolasweber@gmx.de">nicolasweber@gmx.de</a>> wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Author: nico<br>Date: Thu Jan 17 23:50:57 2013<br>New Revision: 172789<br><br>URL: <a href="http://llvm.org/viewvc/llvm-project?rev=172789&view=rev">http://llvm.org/viewvc/llvm-project?rev=172789&view=rev</a><br>Log:<br>Formatter: After case blocks, "break" goes on the same line as the "}", PR14907.<br><br>Before:<br>switch (foo) {<br>case a: {<br>  int a = g();<br>  h(a);<br>}<br>  break;<br>}<br><br>Now:<br>switch (foo) {<br>case a: {<br>  int a = g();<br>  h(a);<br>} break;<br>}<br></blockquote></div><br></body></html>