What C++11 features does Visual Studio 2010 support?

C++Visual Studio-2010Visual StudioC++11

C++ Problem Overview


There is a list for GCC; is there a similar list for Visual Studio 2010?

C++ Solutions


Solution 1 - C++

There is also a list for Visual C++ 2010 (that article describes the core language features that have been implemented; the PDF linked from the article describes the library features that have been implemented).

Edit: I've just come across an awesome list: the Apache C++ Standard Library wiki has a table listing the C++11 core language features and which C++ compilers support each of them.

Solution 2 - C++

Here is the best list IMO since it breaks it down into several tabs like core language, library, etc: Summary of C++0x Feature Availability in gcc and MSVC

Solution 3 - C++

Here is a comprehensive list of C++11/14/17 support in Visual Studio 10, 12, 13, 15.

Solution 4 - C++

The What's new in Visual C++ 2010 MSDN page summarises the new feature support as well.

Solution 5 - C++

See the C++ compilers implementation matrix. The page is maintained as best-effort and may lag behind most recent compiler releases.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionThomas BoniniView Question on Stackoverflow
Solution 1 - C++James McNellisView Answer on Stackoverflow
Solution 2 - C++daveangelView Answer on Stackoverflow
Solution 3 - C++uceumernView Answer on Stackoverflow
Solution 4 - C++AshleysBrainView Answer on Stackoverflow
Solution 5 - C++kurt krueckebergView Answer on Stackoverflow