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

Unified Diff: webrtc/modules/audio_processing/agc/loudness_histogram.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/modules/audio_processing/agc/loudness_histogram.cc
diff --git a/webrtc/modules/audio_processing/agc/loudness_histogram.cc b/webrtc/modules/audio_processing/agc/loudness_histogram.cc
index 9112fbbe800de84c715c3bd52733d9555c2f6ce0..fd6942f4e304befd9408e1a4b0e56a8d1057cc53 100644
--- a/webrtc/modules/audio_processing/agc/loudness_histogram.cc
+++ b/webrtc/modules/audio_processing/agc/loudness_histogram.cc
@@ -174,7 +174,7 @@ LoudnessHistogram* LoudnessHistogram::Create() {
LoudnessHistogram* LoudnessHistogram::Create(int window_size) {
if (window_size < 0)
- return NULL;
+ return nullptr;
return new LoudnessHistogram(window_size);
}

Powered by Google App Engine
This is Rietveld 408576698