How to switch Visual Studio 2010 to C ++ 11

I am new to C ++ programming and I want to try C ++ 11 new features.

So what I ask is, how can I switch visual-studio 2010 to be able to compile C ++ 11 sources?

+5
source share
2 answers

You can refer to this table: C ++ 0x Features of the main language In VC10: Table . Just use them in your code.

+4
source

No switch; VC10 (and VC12) will always compile code that matches the C ++ 11 part that they support. That, of course, is not all.

+4
source

All Articles