| Index: base/lazy_instance.h
|
| diff --git a/base/lazy_instance.h b/base/lazy_instance.h
|
| index 7021829e563a0facdb65c68fb7f70c2f1997891d..80043ffc1a5765f02afbabf5d3bbeeb3c3276271 100644
|
| --- a/base/lazy_instance.h
|
| +++ b/base/lazy_instance.h
|
| @@ -187,7 +187,7 @@ class LazyInstance {
|
|
|
| subtle::AtomicWord private_instance_;
|
| // Preallocated space for the Type instance.
|
| - base::AlignedMemory<sizeof(Type), ALIGNOF(Type)> private_buf_;
|
| + base::AlignedMemory<ALIGNOF(Type), sizeof(Type)> private_buf_;
|
|
|
| private:
|
| Type* instance() {
|
|
|