diff options
Diffstat (limited to 'chrome/browser/sync/notifier/base/static_assert.h')
-rw-r--r-- | chrome/browser/sync/notifier/base/static_assert.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/sync/notifier/base/static_assert.h b/chrome/browser/sync/notifier/base/static_assert.h index 78e6ac3..12dba44 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{}; |