Added support for Visual Studio 2017.9 (v15.9.2).

This commit is contained in:
LoRd_MuldeR 2018-11-26 20:51:40 +01:00
parent 5a54e2219d
commit 82c81f5c42

View File

@ -67,7 +67,13 @@ namespace MUtils
#error Compiler is not supported!
#endif
#elif defined(_MSC_VER)
#if (_MSC_VER == 1915)
#if (_MSC_VER == 1916)
#if((_MSC_FULL_VER >= 191627024) && (_MSC_FULL_VER <= 191627024))
"MSVC 2017.9";
#else
#error Compiler version is not supported yet!
#endif
#elif (_MSC_VER == 1915)
#if((_MSC_FULL_VER >= 191526726) && (_MSC_FULL_VER <= 191526732))
"MSVC 2017.8";
#else