<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><blockquote type="cite"><div>On Jul 5, 2011, at 22:33 PM, Chris Lattner wrote:<br><font class="Apple-style-span" color="#006312"><br></font>We even support the new ARC Objective-C feature in all modes as well, meaning that folks can write code in Objective-ARC++'0x if they so choose.<br><br>-Chris<br></div></blockquote></div><br><div>Objarcox, I choose you!</div><div><br></div><div>Specifically, I'm trying out the analyzer and 0xB features and it was mentioned that all the analyzer notes now work in C++ mode as well and many do, but not memory management issues it seems.</div><div><br></div><div>Code like:</div><div><br></div><div>int main(int argc, char *argv[]) {<br>    int *x = new int;</div><div>    *x = 5;    // suppress dead store / not initialized warnings<br>    return 0;<br>}<br><br></div><div>yields no warnings from the analyzer. Same result with member vars, etc, Is this just a bridge too far (for now)?</div><div><br></div><div>Best, Arthur</div></body></html>