Added support for VS2017 version 15.5.0.

This commit is contained in:
LoRd_MuldeR 2017-12-06 01:04:04 +01:00
parent 4d2aaa304f
commit 8adbc8a212
2 changed files with 9 additions and 3 deletions

View File

@ -67,7 +67,13 @@ namespace MUtils
#error Compiler is not supported!
#endif
#elif defined(_MSC_VER)
#if (_MSC_VER == 1911)
#if (_MSC_VER == 1912)
#if(_MSC_FULL_VER == 191225830)
"MSVC 2017.5";
#else
#error Compiler version is not supported yet!
#endif
#elif (_MSC_VER == 1911)
#if((_MSC_FULL_VER >= 191125542) && (_MSC_FULL_VER <= 191125547))
"MSVC 2017.4";
#elif((_MSC_FULL_VER >= 191125506) && (_MSC_FULL_VER <= 191125508))

View File

@ -311,8 +311,8 @@ void MUtils::UpdateChecker::testMirrorsList(void)
mirrorList << QString::fromLatin1(update_mirrors[i]);
}
qDebug("\n[Known Hosts]");
log("Testing all known hosts...", "", "---");
qDebug("\n[Mirror Sites]");
log("Testing all known mirror sites...", "", "---");
UpdateCheckerInfo updateInfo;
while (!mirrorList.isEmpty())