OSDN Git Service

Added support for Visual Studio 2017.7 (v15.8.1).
authorLoRd_MuldeR <mulder2@gmx.de>
Mon, 20 Aug 2018 16:44:39 +0000 (18:44 +0200)
committerLoRd_MuldeR <mulder2@gmx.de>
Mon, 20 Aug 2018 16:44:39 +0000 (18:44 +0200)
include/MUtils/Version.h

index 642d0e8..bc51c24 100644 (file)
@@ -67,7 +67,13 @@ namespace MUtils
                                                #error Compiler is not supported!
                                        #endif
                                #elif defined(_MSC_VER)
-                                       #if (_MSC_VER == 1914)
+                                       #if (_MSC_VER == 1915)
+                                               #if((_MSC_FULL_VER >= 191526726) && (_MSC_FULL_VER <= 191526726))
+                                                       "MSVC 2017.8";
+                                               #else
+                                                       #error Compiler version is not supported yet!
+                                               #endif
+                                       #elif (_MSC_VER == 1914)
                                                #if((_MSC_FULL_VER >= 191426430) && (_MSC_FULL_VER <= 191426433))
                                                        "MSVC 2017.7";
                                                #else