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

Unified Diff: webrtc/modules/audio_processing/transient/wpd_node_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/transient/wpd_node_unittest.cc
diff --git a/webrtc/modules/audio_processing/transient/wpd_node_unittest.cc b/webrtc/modules/audio_processing/transient/wpd_node_unittest.cc
index 3a9cb759f210078d05dcf99ad45e50d3ad2f7de7..e6047945da7e0e25dd30c8446766b3ee78aaf45c 100644
--- a/webrtc/modules/audio_processing/transient/wpd_node_unittest.cc
+++ b/webrtc/modules/audio_processing/transient/wpd_node_unittest.cc
@@ -57,9 +57,9 @@ TEST(WPDNodeTest, UpdateWithArbitraryDataAndArbitraryFilter) {
TEST(WPDNodeTest, ExpectedErrorReturnValue) {
WPDNode node(kDataLength, kCoefficients, kCoefficientsLength);
EXPECT_EQ(-1, node.Update(kParentData, kParentDataLength - 1));
- EXPECT_EQ(-1, node.Update(NULL, kParentDataLength));
+ EXPECT_EQ(-1, node.Update(nullptr, kParentDataLength));
EXPECT_EQ(-1, node.set_data(kParentData, kDataLength - 1));
- EXPECT_EQ(-1, node.set_data(NULL, kDataLength));
+ EXPECT_EQ(-1, node.set_data(nullptr, kDataLength));
}
} // namespace webrtc

Powered by Google App Engine
This is Rietveld 408576698