diff options
Diffstat (limited to 'base/values_unittest.cc')
-rw-r--r-- | base/values_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/values_unittest.cc b/base/values_unittest.cc index a20f3c8..a0ab47f 100644 --- a/base/values_unittest.cc +++ b/base/values_unittest.cc @@ -169,7 +169,7 @@ TEST(ValuesTest, StringValue) { // properly deleted by modifying the value of external flag on destruction. class DeletionTestValue : public Value { public: - DeletionTestValue(bool* deletion_flag) : Value(TYPE_NULL) { + explicit DeletionTestValue(bool* deletion_flag) : Value(TYPE_NULL) { Init(deletion_flag); // Separate function so that we can use ASSERT_* } |