Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1220)

Unified Diff: cc/base/scoped_ptr_vector_unittest.cc

Issue 632613002: [C++11 Allowed Features] Declares a type-safe null pointer converting from NULL to nullptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/base/scoped_ptr_vector.h ('k') | cc/base/swap_promise_monitor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/base/scoped_ptr_vector_unittest.cc
diff --git a/cc/base/scoped_ptr_vector_unittest.cc b/cc/base/scoped_ptr_vector_unittest.cc
index 73a7f81491e3a4da2b31c4a7dda7e157726e757d..391ab48cc063196dd936e75235fd8f50d95257f1 100644
--- a/cc/base/scoped_ptr_vector_unittest.cc
+++ b/cc/base/scoped_ptr_vector_unittest.cc
@@ -70,9 +70,9 @@ TEST(ScopedPtrVectorTest, InsertAndTake) {
EXPECT_EQ(6, v[5]->data());
EXPECT_EQ(3u, v2.size());
- EXPECT_EQ(NULL, v2[0]);
- EXPECT_EQ(NULL, v2[1]);
- EXPECT_EQ(NULL, v2[2]);
+ EXPECT_EQ(nullptr, v2[0]);
+ EXPECT_EQ(nullptr, v2[1]);
+ EXPECT_EQ(nullptr, v2[2]);
}
TEST(ScopedPtrVectorTest, Partition) {
« no previous file with comments | « cc/base/scoped_ptr_vector.h ('k') | cc/base/swap_promise_monitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698