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

Unified Diff: webrtc/modules/audio_processing/transient/wpd_tree.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/wpd_tree.cc
diff --git a/webrtc/modules/audio_processing/transient/wpd_tree.cc b/webrtc/modules/audio_processing/transient/wpd_tree.cc
index fece6863fc4dc67525aa84533dfc575a4772a8fa..432b05ff621514f23d547d7cff6fe4e215d35b14 100644
--- a/webrtc/modules/audio_processing/transient/wpd_tree.cc
+++ b/webrtc/modules/audio_processing/transient/wpd_tree.cc
@@ -66,7 +66,7 @@ WPDTree::~WPDTree() {}
WPDNode* WPDTree::NodeAt(int level, int index) {
if (level < 0 || level > levels_ || index < 0 || index >= 1 << level) {
- return NULL;
+ return nullptr;
}
return nodes_[(1 << level) + index].get();

Powered by Google App Engine
This is Rietveld 408576698