OSDN Git Service

Added support for new VS2017 version.
authorLoRd_MuldeR <mulder2@gmx.de>
Sat, 19 Aug 2017 17:34:46 +0000 (19:34 +0200)
committerLoRd_MuldeR <mulder2@gmx.de>
Sat, 19 Aug 2017 17:34:46 +0000 (19:34 +0200)
include/MUtils/Version.h

index 81dd6c4..d432bdc 100644 (file)
@@ -66,7 +66,13 @@ namespace MUtils
                                        #error Compiler is not supported!
                                #endif
                        #elif defined(_MSC_VER)
-                               #if (_MSC_VER == 1910)
+                               #if (_MSC_VER == 1911)
+                                       #if (_MSC_FULL_VER == 191125506)
+                                               static const char *const COMPILER_VERS = "MSVC 2017.3";
+                                       #else
+                                               #error Compiler version is not supported yet!
+                                       #endif
+                               #elif (_MSC_VER == 1910)
                                        #if ((_MSC_FULL_VER >= 191025017) && (_MSC_FULL_VER <= 191025019))
                                                static const char *const COMPILER_VERS = "MSVC 2017.2";
                                        #else