From b95abf1559c16a0d0a669bca67f487c09a4bd8eb 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 649450315ed71e..aee46a935b3a86 100644 --- a/src/cares_wrap.h +++ b/src/cares_wrap.h @@ -156,10 +156,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);