| Index: base/containers/stack_container.h
|
| diff --git a/base/containers/stack_container.h b/base/containers/stack_container.h
|
| index 54090d3cd997b0e9105de2e126a037f0e75a518d..90af068d084e9c9f5961622d56bb750fc181667f 100644
|
| --- a/base/containers/stack_container.h
|
| +++ b/base/containers/stack_container.h
|
| @@ -57,7 +57,7 @@ class StackAllocator : public std::allocator<T> {
|
| // buffer of the right size instead.
|
| base::AlignedMemory<sizeof(T[stack_capacity]), ALIGNOF(T)> stack_buffer_;
|
| #if defined(__GNUC__) && !defined(ARCH_CPU_X86_FAMILY)
|
| - COMPILE_ASSERT(ALIGNOF(T) <= 16, crbug_115612);
|
| + static_assert(ALIGNOF(T) <= 16, "crbug_115612");
|
| #endif
|
|
|
| // Set when the stack buffer is used for an allocation. We do not track
|
|
|