| Index: mojo/system/local_data_pipe_unittest.cc
|
| diff --git a/mojo/system/local_data_pipe_unittest.cc b/mojo/system/local_data_pipe_unittest.cc
|
| index e1079d938229a2b52fe9d1fe77c6c80c66cd7dce..adcd556d2b472dc0141280fa0cdb9c783f239c1b 100644
|
| --- a/mojo/system/local_data_pipe_unittest.cc
|
| +++ b/mojo/system/local_data_pipe_unittest.cc
|
| @@ -1374,7 +1374,7 @@ TEST(LocalDataPipeTest, TwoPhaseAllOrNone) {
|
|
|
| // Try writing an amount which isn't a multiple of the element size
|
| // (two-phase).
|
| - COMPILE_ASSERT(sizeof(int32_t) > 1u, wow_int32_ts_have_size_1);
|
| + static_assert(sizeof(int32_t) > 1u, "Wow! int32_t's have size 1");
|
| num_bytes = 1u;
|
| write_ptr = nullptr;
|
| EXPECT_EQ(
|
|
|