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

44,809

Solution 1

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

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

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

Solution 4

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

Solution 5

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

Share:
44,809
Andreas Bonini
Author by

Andreas Bonini

Updated on February 10, 2020

Comments

  • Andreas Bonini
    Andreas Bonini about 4 years

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

  • Andreas Bonini
    Andreas Bonini almost 14 years
    That table is broken, you can't see the VC10 column :/
  • James McNellis
    James McNellis almost 14 years
    @Andreas: Yeah, the new MSDN blogs layout broke it... I guess you can just go by the colors :-).
  • smerlin
    smerlin almost 14 years
    @T.E.D: reduce your screen resolution to e.g. 1280x800 and you will see that it IS broken.
  • Matthieu M.
    Matthieu M. almost 14 years
    Amazing list! Thanks very much James.
  • Nick Westgate
    Nick Westgate over 8 years
    This page compares C++11 etc feature support in all Visual Studio versions.
  • Andreas Haferburg
    Andreas Haferburg over 6 years
    Well, that's the problem with SO. In 2010, the accepted answer might have been best. But in 2017, this is the best answer.