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

Unified Diff: webrtc/config.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/config.cc
diff --git a/webrtc/config.cc b/webrtc/config.cc
index 6ffd1c3fd1563f2d50dd0462c0117b61ea591f3e..3a8ab8523694c3e60c990f9e52c45de0ae946efb 100644
--- a/webrtc/config.cc
+++ b/webrtc/config.cc
@@ -141,7 +141,7 @@ std::string VideoEncoderConfig::ToString() const {
break;
}
ss << ", encoder_specific_settings: ";
- ss << (encoder_specific_settings != NULL ? "(ptr)" : "NULL");
+ ss << (encoder_specific_settings != nullptr ? "(ptr)" : "null");
ss << ", min_transmit_bitrate_bps: " << min_transmit_bitrate_bps;
ss << '}';

Powered by Google App Engine
This is Rietveld 408576698