MUtilities development repository
修订版 | f513a182714e07a47ccc656ad4efe24f475b2bd3 (tree) |
---|---|
时间 | 2018-08-21 01:44:39 |
作者 | ![]() |
Commiter | LoRd_MuldeR |
Added support for Visual Studio 2017.7 (v15.8.1).
@@ -67,7 +67,13 @@ namespace MUtils | ||
67 | 67 | #error Compiler is not supported! |
68 | 68 | #endif |
69 | 69 | #elif defined(_MSC_VER) |
70 | - #if (_MSC_VER == 1914) | |
70 | + #if (_MSC_VER == 1915) | |
71 | + #if((_MSC_FULL_VER >= 191526726) && (_MSC_FULL_VER <= 191526726)) | |
72 | + "MSVC 2017.8"; | |
73 | + #else | |
74 | + #error Compiler version is not supported yet! | |
75 | + #endif | |
76 | + #elif (_MSC_VER == 1914) | |
71 | 77 | #if((_MSC_FULL_VER >= 191426430) && (_MSC_FULL_VER <= 191426433)) |
72 | 78 | "MSVC 2017.7"; |
73 | 79 | #else |