| Index: base/lazy_instance_unittest.cc
|
| diff --git a/base/lazy_instance_unittest.cc b/base/lazy_instance_unittest.cc
|
| index 8947b1291f60d54112fba0f13c72c86c9b29961a..b4db75dcd2eb46ad7326c871fd38ed73ecfc5ee0 100644
|
| --- a/base/lazy_instance_unittest.cc
|
| +++ b/base/lazy_instance_unittest.cc
|
| @@ -166,9 +166,9 @@ TEST(LazyInstanceTest, Alignment) {
|
| // ensure proper alignment of the static data.
|
| static LazyInstance<AlignedData<4> > align4 = LAZY_INSTANCE_INITIALIZER;
|
| static LazyInstance<AlignedData<32> > align32 = LAZY_INSTANCE_INITIALIZER;
|
| - static LazyInstance<AlignedData<4096> > align4096 = LAZY_INSTANCE_INITIALIZER;
|
| + static LazyInstance<AlignedData<64>> align64 = LAZY_INSTANCE_INITIALIZER;
|
|
|
| EXPECT_ALIGNED(align4.Pointer(), 4);
|
| EXPECT_ALIGNED(align32.Pointer(), 32);
|
| - EXPECT_ALIGNED(align4096.Pointer(), 4096);
|
| + EXPECT_ALIGNED(align64.Pointer(), 64);
|
| }
|
|
|