Skip to content

Instantly share code, notes, and snippets.

@RElesgoe
Created August 14, 2016 02:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RElesgoe/5945dc432380ab29d4cc0ece63bc0537 to your computer and use it in GitHub Desktop.
Save RElesgoe/5945dc432380ab29d4cc0ece63bc0537 to your computer and use it in GitHub Desktop.
// Testing on VS 2015 Update 3, using /std:c++latest
#include <iostream>
int main()
{
std::cout << "_MSC_FULL_VER: " << _MSC_FULL_VER << std::endl;
std::cout << "_HAS_CXX17: " << _HAS_CXX17 << std::endl;
std::cout << "_HAS_AUTO_PTR_ETC: " << _HAS_AUTO_PTR_ETC << std::endl;
std::cout << "_MSVC_LANG: " << _MSVC_LANG << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment