| Index: chrome/installer/util/install_util.cc
|
| diff --git a/chrome/installer/util/install_util.cc b/chrome/installer/util/install_util.cc
|
| index e81c0cc751f1c3bc30226b42a0684d2144b4dfa8..331479187d053a457fb99e638568a65b84827071 100644
|
| --- a/chrome/installer/util/install_util.cc
|
| +++ b/chrome/installer/util/install_util.cc
|
| @@ -87,8 +87,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 should have NUM_STAGES elements");
|
|
|
| // 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
|
|
|