From cbc3dd997eb90d629d1b9912b7a5a40eb82343df Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Wed, 16 May 2018 11:50:48 +0200 Subject: src, tools: add check for left leaning pointers This commit adds a rule to cpplint to check that pointers in the code base lean to the left and not right, and also fixes the violations reported. PR-URL: https://github.com/nodejs/node/pull/21010 Reviewed-By: Ben Noordhuis Reviewed-By: Anna Henningsen Reviewed-By: Ruben Bridgewater Reviewed-By: James M Snell --- src/tcp_wrap.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tcp_wrap.cc') diff --git a/src/tcp_wrap.cc b/src/tcp_wrap.cc index 8200353b17..01c7d253e6 100644 --- a/src/tcp_wrap.cc +++ b/src/tcp_wrap.cc @@ -341,8 +341,8 @@ Local AddressToJS(Environment* env, Local info) { EscapableHandleScope scope(env->isolate()); char ip[INET6_ADDRSTRLEN]; - const sockaddr_in *a4; - const sockaddr_in6 *a6; + const sockaddr_in* a4; + const sockaddr_in6* a6; int port; if (info.IsEmpty()) -- cgit v1.2.3