Index: chrome/installer/util/install_util.cc |
diff --git a/chrome/installer/util/install_util.cc b/chrome/installer/util/install_util.cc |
index fe7d5899f6277e94c453b6cb6192769ddf5eb92e..98528d70013e0fb261bd85366bdc2a682912fad3 100644 |
--- a/chrome/installer/util/install_util.cc |
+++ b/chrome/installer/util/install_util.cc |
@@ -88,8 +88,8 @@ const wchar_t* const kStages[] = { |
kStageUninstallingChromeFrame, |
}; |
-COMPILE_ASSERT(installer::NUM_STAGES == arraysize(kStages), |
- kStages_disagrees_with_Stage_comma_they_must_match_bang); |
+static_assert(installer::NUM_STAGES == arraysize(kStages), |
+ "kStages_disagrees_with_Stage_comma_they_must_match_bang"); |
// Creates a zero-sized non-decorated foreground window that doesn't appear |
// in the taskbar. This is used as a parent window for calls to ShellExecuteEx |