| Index: base/files/file_unittest.cc
|
| diff --git a/base/files/file_unittest.cc b/base/files/file_unittest.cc
|
| index 5c594242bc84867ec80a41f97465c6a486e19aee..3d60b2c870fc72a36738413c32b8167137cf140b 100644
|
| --- a/base/files/file_unittest.cc
|
| +++ b/base/files/file_unittest.cc
|
| @@ -517,7 +517,7 @@ TEST(FileTest, MemoryCorruption) {
|
| // Test that changing the checksum value is detected.
|
| base::File file;
|
| EXPECT_NE(file.file_.file_memory_checksum_,
|
| - implicit_cast<unsigned int>(file.GetPlatformFile()));
|
| + static_cast<unsigned int>(file.GetPlatformFile()));
|
| file.file_.file_memory_checksum_ = file.GetPlatformFile();
|
| EXPECT_DEATH(file.IsValid(), "");
|
|
|
|
|