| Index: base/win/scoped_bstr.cc
|
| diff --git a/base/win/scoped_bstr.cc b/base/win/scoped_bstr.cc
|
| index 63ade0cb4215ae6deeffb6ca6937159ba180d76c..298318dbc03d279f79fb02695a584ce995c4043c 100644
|
| --- a/base/win/scoped_bstr.cc
|
| +++ b/base/win/scoped_bstr.cc
|
| @@ -14,7 +14,7 @@ ScopedBstr::ScopedBstr(const char16* non_bstr)
|
| }
|
|
|
| ScopedBstr::~ScopedBstr() {
|
| - COMPILE_ASSERT(sizeof(ScopedBstr) == sizeof(BSTR), ScopedBstrSize);
|
| + static_assert(sizeof(ScopedBstr) == sizeof(BSTR), "ScopedBstrSize");
|
| SysFreeString(bstr_);
|
| }
|
|
|
|
|