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

Unified Diff: webrtc/modules/audio_coding/neteq/decision_logic.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_coding/neteq/decision_logic.cc
diff --git a/webrtc/modules/audio_coding/neteq/decision_logic.cc b/webrtc/modules/audio_coding/neteq/decision_logic.cc
index 0c9992a8177c5f8afbd9bef761033bea7f2da2f0..23ce2dec78933709e0103cfdd2e8cef31cc6febe 100644
--- a/webrtc/modules/audio_coding/neteq/decision_logic.cc
+++ b/webrtc/modules/audio_coding/neteq/decision_logic.cc
@@ -45,7 +45,7 @@ DecisionLogic* DecisionLogic::Create(int fs_hz,
}
// This line cannot be reached, but must be here to avoid compiler errors.
assert(false);
- return NULL;
+ return nullptr;
}
DecisionLogic::DecisionLogic(int fs_hz,

Powered by Google App Engine
This is Rietveld 408576698