From e9f9d076e9e9ca26caf36b715f025a2beb613783 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Fri, 6 Mar 2020 11:21:00 -0500 Subject: [PATCH] src: fix -Wreorder compiler warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ../src/node_http_common-inl.h:126:7: warning: field 'token_' will be initialized after field 'name_' [-Wreorder] : token_(other.token_), PR-URL: https://github.com/nodejs/node/pull/32126 Refs: https://github.com/nodejs/node/pull/32069 Reviewed-By: Denys Otrishko Reviewed-By: Michael Dawson Reviewed-By: David Carlier Reviewed-By: Luigi Pinca Reviewed-By: Richard Lau Reviewed-By: Anna Henningsen Reviewed-By: Tobias Nießen --- src/node_http_common-inl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/node_http_common-inl.h b/src/node_http_common-inl.h index 1bc7b46d63a827..d63cdf79a4b468 100644 --- a/src/node_http_common-inl.h +++ b/src/node_http_common-inl.h @@ -123,9 +123,9 @@ NgHeader::NgHeader( template NgHeader::NgHeader(NgHeader&& other) noexcept - : token_(other.token_), - name_(std::move(other.name_)), + : name_(std::move(other.name_)), value_(std::move(other.value_)), + token_(other.token_), flags_(other.flags_) { other.token_ = -1; other.flags_ = 0;