Replace NULL with nullptr or null in webrtc/base/.
BUG=webrtc:7147 Review-Url: https://codereview.webrtc.org/2718663005 Cr-Commit-Position: refs/heads/master@{#16878}
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user