views:

391

answers:

4

Does anyone know good URLs/Sites/mailing lists to track the current implementation progress of C++0x features in MSVC and GCC?

BTW: Yes I know there is boost but because I'm also very interested in the new language features I only want to know the progress in MSVC and GCC (as those are the two compilers we use for our projects).

+6  A: 

Well, for GCC it's obviously this page. I couldn't find anything for MSVC, though.

schnaader
+4  A: 

Herb Sutter had a blog post recently about VS10 Beta, this doesn't give you progress reports but another blog I saw said that VS10 Beta is 90% feature complete (I don't remember which) so I don't suppose there will be much new after this for the 2010 version.

Herb lists the following:


Since this answer was originally written they've added support for nullptr

Motti
Unfortunately this does not list the C++0x features that are already implemented in VS2008.
rstevens
+8  A: 

This is pretty good: http://wiki.apache.org/stdcxx/C++0xCompilerSupport

pauldoo
Very comprehensive and absolutely what I wanted!
rstevens
+3  A: 

Here is a list of c++0x features of MSVC++08/10:

http://blogs.msdn.com/b/vcblog/archive/2010/04/06/c-0x-core-language-features-in-vc10-the-table.aspx

Quonux