| Index: chrome/browser/sync/notifier/base/static_assert.h
|
| diff --git a/chrome/browser/sync/notifier/base/static_assert.h b/chrome/browser/sync/notifier/base/static_assert.h
|
| index 78e6ac3e97e3948694ce1b310a37545f86191350..12dba443edaca2c32e9606c49a7f59b47ec4ec32 100644
|
| --- a/chrome/browser/sync/notifier/base/static_assert.h
|
| +++ b/chrome/browser/sync/notifier/base/static_assert.h
|
| @@ -5,9 +5,11 @@
|
| #ifndef CHROME_BROWSER_SYNC_NOTIFIER_BASE_STATIC_ASSERT_H_
|
| #define CHROME_BROWSER_SYNC_NOTIFIER_BASE_STATIC_ASSERT_H_
|
|
|
| -template <bool> struct STATIC_ASSERTION_FAILURE;
|
| +template<bool> struct STATIC_ASSERTION_FAILURE;
|
|
|
| -template <> struct STATIC_ASSERTION_FAILURE<true> { enum { value = 1 }; };
|
| +template<> struct STATIC_ASSERTION_FAILURE<true> {
|
| + enum { value = 1 };
|
| +};
|
|
|
| template<int> struct static_assert_test{};
|
|
|
|
|