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..b5ff91cf3aaba8fb754753d613c26b1899e8fa45 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; they must match!"); |
// 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 |