<div style="font-family: arial, helvetica, sans-serif; font-size: 10pt"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>Some more information about the fixes that should have been in the commit log:<br>
</div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
+  verifyFormat("a-- > b;");<br></blockquote><div><br></div><div style>With the patch we now understand (a subset of) post-increment and post-decrement operators (we check whether the previous token is an identifier). That this did not crop up before is probably a good sign :-).</div>
<div style> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
+  verifyFormat("b ? -a : c;");<br></blockquote><div><br></div><div style>Now "+" and "-" after "?" or ":" are always considered unary operators.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

+  verifyFormat("n * sizeof char16;");<br></blockquote><div><br></div><div style>the sizeof keyword is now handled similar to a literal, i.e. it helps identifying the "*" as a binary operator.</div><div>
 </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
+  verifyFormat("sizeof(char);");<br></blockquote><div><br></div><div style>We now explicitly exclude sizeof and typeof as keywords that require a space before the "(".</div><div style><br></div><div style>
Cheers,</div><div style>Daniel</div></div><br></div></div></div>