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

Unified Diff: net/quic/quic_utils_chromium_test.cc

Issue 612323013: QUIC - (no behavior change) s/NULL/nullptr/g in .../quic/... (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 | « net/quic/quic_utils.h ('k') | net/quic/reliable_quic_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_utils_chromium_test.cc
diff --git a/net/quic/quic_utils_chromium_test.cc b/net/quic/quic_utils_chromium_test.cc
index 247b8613c494334333a0425fe02ab743adbd8a7c..b9620cfaf4a048fdfd207d2fd189942534dc12e9 100644
--- a/net/quic/quic_utils_chromium_test.cc
+++ b/net/quic/quic_utils_chromium_test.cc
@@ -25,7 +25,7 @@ TEST(QuicUtilsChromiumTest, FindOrNullTest) {
const map<int, int>& const_m = m;
const int* p2 = FindOrNull(const_m, 0);
CHECK_EQ(*p2, 3);
- CHECK(FindOrNull(m, 1) == NULL);
+ CHECK(FindOrNull(m, 1) == nullptr);
}
TEST(QuicUtilsChromiumTest, FindOrDieTest) {
« no previous file with comments | « net/quic/quic_utils.h ('k') | net/quic/reliable_quic_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698