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

Unified Diff: webrtc/modules/audio_processing/agc/loudness_histogram_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_processing/agc/loudness_histogram_unittest.cc
diff --git a/webrtc/modules/audio_processing/agc/loudness_histogram_unittest.cc b/webrtc/modules/audio_processing/agc/loudness_histogram_unittest.cc
index 089c05a023407a0ec4d57d2e84e1f0fe9a39c712..65b1339bba3c3bfa451061df4479ccc5a8f25a54 100644
--- a/webrtc/modules/audio_processing/agc/loudness_histogram_unittest.cc
+++ b/webrtc/modules/audio_processing/agc/loudness_histogram_unittest.cc
@@ -50,7 +50,7 @@ void LoudnessHistogramTest::TestClean() {
void LoudnessHistogramTest::RunTest(bool enable_circular_buff,
const char* filename) {
FILE* in_file = fopen(filename, "rb");
- ASSERT_TRUE(in_file != NULL);
+ ASSERT_TRUE(in_file != nullptr);
if (enable_circular_buff) {
int buffer_size;
EXPECT_EQ(fread(&buffer_size, sizeof(buffer_size), 1, in_file), 1u);

Powered by Google App Engine
This is Rietveld 408576698