From 1aa2080d2932474f01c6c4f5fd48ff74f2c83100 Mon Sep 17 00:00:00 2001 From: Luan Date: Tue, 3 Aug 2021 13:19:21 -0300 Subject: [PATCH] src: fix align in cares_wrap.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: James M Snell PR-URL: https://github.com/nodejs/node/pull/39610 Reviewed-By: Anna Henningsen Reviewed-By: James M Snell Reviewed-By: Michaƫl Zasso --- src/cares_wrap.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cares_wrap.h b/src/cares_wrap.h index 3cd6981bf5c524..60f99e65edf348 100644 --- a/src/cares_wrap.h +++ b/src/cares_wrap.h @@ -148,10 +148,10 @@ struct NodeAresTask final : public MemoryRetainer { class ChannelWrap final : public AsyncWrap { public: ChannelWrap( - Environment* env, - v8::Local object, - int timeout, - int tries); + Environment* env, + v8::Local object, + int timeout, + int tries); ~ChannelWrap() override; static void New(const v8::FunctionCallbackInfo& args);