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

Unified Diff: webrtc/p2p/quic/quictransport.cc

Issue 2685783014: Replace NULL with nullptr in all C++ files. (Closed)
Patch Set: Fixing android. Created 3 years, 10 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
Index: webrtc/p2p/quic/quictransport.cc
diff --git a/webrtc/p2p/quic/quictransport.cc b/webrtc/p2p/quic/quictransport.cc
index aaa11ebfcb65dc185337eebb19b6b45762cbd6ee..895857aeb320c989149f2d28cf2c1f5254c862a7 100644
--- a/webrtc/p2p/quic/quictransport.cc
+++ b/webrtc/p2p/quic/quictransport.cc
@@ -88,7 +88,7 @@ void QuicTransport::DestroyTransportChannel(TransportChannelImpl* channel) {
}
bool QuicTransport::GetSslRole(rtc::SSLRole* ssl_role) const {
- RTC_DCHECK(ssl_role != NULL);
+ RTC_DCHECK(ssl_role != nullptr);
*ssl_role = local_role_;
return true;
}

Powered by Google App Engine
This is Rietveld 408576698