A preview version of Visual Studio 2012 (the next version after VS2010) is now available.
Does anyone know what new C++11 features it supports? (I'm not in a position to try it out at the moment).
A preview version of Visual Studio 2012 (the next version after VS2010) is now available.
Does anyone know what new C++11 features it supports? (I'm not in a position to try it out at the moment).
There is now a definitive list of C++11 features in VS2010 and VS2012 on MSDN.
It's worth noting that Visual Studio 2010 already had quite a bit of early C++11 support. So to summarize what is already linked to in other answers, here is what is new in Visual Studio 11 that was not part of Visual Studio 2010:
In early November 2012, Microsoft announced the Visual C++ Compiler November 2012 CTP, which adds more C++11 functionality to Visual Studio 2012:
http://blogs.msdn.com/b/vcblog/archive/2011/09/12/10209291.aspx
Try this video by Herb Sutter. This fellow dont need introduction!!!
http://channel9.msdn.com/Events/BUILD/BUILD2011/TOOL-835T
Here is the list of feature of the new visual studio version and here is the list of what all compilers support
There is a list there. What strikes me the most is the features which are still missing:
boost::thread_specific_ptr
for a while.All the other features which are yet missing are mainly stuff you can live without. What I list here is just what nags me everyday when working with VS10. It's just so irritating that they didn't work on the compiler at all.
EDIT: I shall also add that
emplace_back
(one great feature for the standard library containers) isn't correctly implemented.