Fixed detection of VC 2017.5 after recent VC update.

This commit is contained in:
LoRd_MuldeR 2017-12-15 20:13:49 +01:00
parent 96eaf7ddcc
commit e5c3d13d86

View File

@ -68,7 +68,7 @@ namespace MUtils
#endif
#elif defined(_MSC_VER)
#if (_MSC_VER == 1912)
#if(_MSC_FULL_VER == 191225830)
#if((_MSC_FULL_VER >= 191225830) && (_MSC_FULL_VER <= 191225831))
"MSVC 2017.5";
#else
#error Compiler version is not supported yet!