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

Unified Diff: webrtc/modules/audio_processing/transient/click_annotate.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/transient/click_annotate.cc
diff --git a/webrtc/modules/audio_processing/transient/click_annotate.cc b/webrtc/modules/audio_processing/transient/click_annotate.cc
index b03a714c287979480929576130e24d549ed2f06e..8cb8093ee068b47d508a12c00fc86bb8074a4909 100644
--- a/webrtc/modules/audio_processing/transient/click_annotate.cc
+++ b/webrtc/modules/audio_processing/transient/click_annotate.cc
@@ -82,7 +82,7 @@ int main(int argc, char* argv[]) {
audio_buffer[i] = 0.0;
}
float value =
- detector.Detect(audio_buffer.get(), audio_buffer_length, NULL, 0);
+ detector.Detect(audio_buffer.get(), audio_buffer_length, nullptr, 0);
if (value < 0.5f) {
value = time;
} else {

Powered by Google App Engine
This is Rietveld 408576698