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

Unified Diff: webrtc/modules/audio_coding/neteq/audio_multi_vector_unittest.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/audio_multi_vector_unittest.cc
diff --git a/webrtc/modules/audio_coding/neteq/audio_multi_vector_unittest.cc b/webrtc/modules/audio_coding/neteq/audio_multi_vector_unittest.cc
index af8d5f1b9828818b67a89296196ac43f51195192..91f338e7025b5c50991d59af575bbe1bba89b10c 100644
--- a/webrtc/modules/audio_coding/neteq/audio_multi_vector_unittest.cc
+++ b/webrtc/modules/audio_coding/neteq/audio_multi_vector_unittest.cc
@@ -122,10 +122,10 @@ TEST_P(AudioMultiVectorTest, PushBackInterleavedAndCopy) {
EXPECT_TRUE(vec_copy.Empty());
}
-// Try to copy to a NULL pointer. Nothing should happen.
+// Try to copy to a null pointer. Nothing should happen.
TEST_P(AudioMultiVectorTest, CopyToNull) {
AudioMultiVector vec(num_channels_);
- AudioMultiVector* vec_copy = NULL;
+ AudioMultiVector* vec_copy = nullptr;
vec.PushBackInterleaved(array_interleaved_, interleaved_length_);
vec.CopyTo(vec_copy);
}

Powered by Google App Engine
This is Rietveld 408576698