You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#if defined(_MSC_VER)
#if _MSC_VER == 1200
std::cout << "You are using Visual C++ 6.0 (_MSC_VER = 1200)" << std::endl;
#elif _MSC_VER >= 1900
std::cout << "You are using Visual Studio 2015 or newer (_MSC_VER >= 1900)" << std::endl;
#else
std::cout << "You are using an older or unsupported version of Visual C++ (_MSC_VER = "
<< _MSC_VER << ")" << std::endl;
#endif
#else
std::cout << "This code is not being compiled with a Microsoft compiler." << std::endl;
#endif
I received the following
The text was updated successfully, but these errors were encountered: