MUtilities development repository
Revision | 8c866a6027fac3ae7177391aca09f8ea1d1e0240 (tree) |
---|---|
Zeit | 2020-01-03 09:13:23 |
Autor | ![]() |
Commiter | LoRd_MuldeR |
Added support for Visual Studio 2019.4 (v16.4).
@@ -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 == 1923) | |
70 | + #if (_MSC_VER == 1924) | |
71 | + #if((_MSC_FULL_VER >= 192428314) && (_MSC_FULL_VER <= 192428314)) | |
72 | + "MSVC 2019.4"; | |
73 | + #else | |
74 | + #error Compiler version is not supported yet! | |
75 | + #endif | |
76 | + #elif (_MSC_VER == 1923) | |
71 | 77 | #if((_MSC_FULL_VER >= 192328105) && (_MSC_FULL_VER <= 192328105)) |
72 | 78 | "MSVC 2019.3"; |
73 | 79 | #else |