Print a warning instead of a message on MSVC < 1600

This commit is contained in:
PKEuS 2013-10-27 12:59:10 +01:00
parent a2ef80b74b
commit 0db50dc0f6
1 changed files with 1 additions and 1 deletions

View File

@ -105,6 +105,6 @@ int main(int argc, char* argv[])
# endif # endif
#elif defined(_MSC_VER) #elif defined(_MSC_VER)
# if (_MSC_VER < 1600) # if (_MSC_VER < 1600)
# pragma message("Using Visual Studio 2008 or earlier. Support for this version will be removed soon.") # pragma message("WARNING: Using Visual Studio 2008 or earlier. Support for this version will be removed soon.")
# endif # endif
#endif #endif