I got the community version of Visual Studio 2013 and I thought that c++11 was supposed to be enabled by default.
However, the macro __cplusplus has a value of 199711L (c++98) rather than 201103L (c++11). Furthermore, if I try to run c++11 specific code (likeconstexpr int a = 5;) it gives an error in the compiler. How do I enable c++11?
__cplusplusis still 199711L at this time. Using Visual Studio 2015 Update 2. – tom_mai78101 Jun 20 '16 at 18:18