Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7980)

Unified Diff: chrome/browser/ui/webui/version_ui.cc

Issue 2894493002: Allow building with VS 2017 Update 3 (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/version_ui.cc
diff --git a/chrome/browser/ui/webui/version_ui.cc b/chrome/browser/ui/webui/version_ui.cc
index 0d918144a1995f3ef7763d7c91454e2188f7f283..632d0ea50c10ba050b491836798746bb621935ca 100644
--- a/chrome/browser/ui/webui/version_ui.cc
+++ b/chrome/browser/ui/webui/version_ui.cc
@@ -146,7 +146,7 @@ WebUIDataSource* CreateVersionUIDataSource() {
#else
html_source->AddString(version_ui::kCompiler, "MSVC 2015");
#endif
-#elif defined(_MSC_VER) && _MSC_VER == 1910
+#elif defined(_MSC_VER) && _MSC_VER >= 1910 && _MSC_VER <= 1911
#if BUILDFLAG(PGO_BUILD)
html_source->AddString(version_ui::kCompiler, "MSVC 2017 (PGO)");
#else
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698