<div dir="ltr"><div class="gmail_default" style>Yes. We do not explicitly check for "= 0" but just don't break after the equals in virtual function declarations in general.</div></div><div class="gmail_extra">
<br><br><div class="gmail_quote">On Mon, Jan 7, 2013 at 6:24 PM, Jordan Rose <span dir="ltr"><<a href="mailto:jordan_rose@apple.com" target="_blank">jordan_rose@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Does the same behavior apply to "= delete" and "= default"? I'm not sure what the prevailing style is there, but it seems like a reasonable thing for consistency.<br>
<span class="HOEnZb"><font color="#888888"><br>
Jordan<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
<br>
On Jan 7, 2013, at 2:48 , Daniel Jasper <<a href="mailto:djasper@google.com">djasper@google.com</a>> wrote:<br>
<br>
> Author: djasper<br>
> Date: Mon Jan  7 04:48:50 2013<br>
> New Revision: 171724<br>
><br>
> URL: <a href="http://llvm.org/viewvc/llvm-project?rev=171724&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=171724&view=rev</a><br>
> Log:<br>
> Do not break before "0" in pure virtual function declarations.<br>
><br>
> Before:<br>
> virtual void write(ELFWriter *writer, OwningPtr<FileOutputBuffer> &buffer) =<br>
>    0<br>
><br>
> After:<br>
> virtual void write(ELFWriter *writerrr,<br>
>                   OwningPtr<FileOutputBuffer> &buffer) = 0;<br>
><br>
> This addresses <a href="http://llvm.org/PR14815" target="_blank">llvm.org/PR14815</a>.<br>
><br>
> To implement this I introduced a line type during parsing and moved the<br>
> definition of TokenType out of the struct for increased readability.<br>
> Should have done the latter in a separate patch, but it would be hard to<br>
> pull apart now.<br>
><br>
> Modified:<br>
>    cfe/trunk/lib/Format/Format.cpp<br>
>    cfe/trunk/unittests/Format/FormatTest.cpp<br>
<br>
</div></div></blockquote></div><br></div>