<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>VC2005 Breaking Change: No More Implicit 'int'</title><link>http://blogs.msdn.com/aymans/archive/2006/04/24/582496.aspx</link><description>Original Code: int main() { const x = 0; } Error VC2005 issues: sample.cpp(3) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int Code after applying the fix: int main() { const int x = 0; } For more details, check</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator></channel></rss>