Chromium Code Reviews

Unified Diff: webrtc/base/testclient_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.
Jump to:
View side-by-side diff with in-line comments
Index: webrtc/base/testclient_unittest.cc
diff --git a/webrtc/base/testclient_unittest.cc b/webrtc/base/testclient_unittest.cc
index bdd06b329a9f594dce57c8194297437c587aa466..55078134c3a2b4ad7bc1fb5b873029ae97586b95 100644
--- a/webrtc/base/testclient_unittest.cc
+++ b/webrtc/base/testclient_unittest.cc
@@ -39,7 +39,7 @@ void TestTcpInternal(const SocketAddress& loopback) {
->CreateAsyncSocket(loopback.family(), SOCK_STREAM);
AsyncTCPSocket* tcp_socket = AsyncTCPSocket::Create(
socket, loopback, server.address());
- ASSERT_TRUE(tcp_socket != NULL);
+ ASSERT_TRUE(tcp_socket != nullptr);
TestClient client(tcp_socket);
SocketAddress addr = client.address(), from;
« webrtc/base/event.cc ('K') | « webrtc/base/testclient.cc ('k') | webrtc/base/thread.cc » ('j') | no next file with comments »

Powered by Google App Engine