c++ - Disabling C++11 features on VS2012 -


is possible disable c++11 features on vs2012? code isn't ready yet , i'd not introduce further confusion

as of visual c++ 2015 update 3, possible specify language version language behavior (apparently doesn't affect conformance checking):

https://blogs.msdn.microsoft.com/vcblog/2016/06/07/standards-version-switches-in-the-compiler/

unfortunately options "c++14" (not exact, includes post-c++14 features had shipped) , "c++ latest" (c++14 plus partial implementation of c++17 , proposals, not "experimental" features)

the corresponding command line switches are:

  • /std:c++14
  • /std:c++latest

Comments