Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup: remove unecessary move
Signed-off-by: Michael Dawson <mdawson@devrus.com>
  • Loading branch information
mhdawson committed Oct 25, 2021
commit dc146f909dab6967614cca4d31ef250b1da5ee68
2 changes: 1 addition & 1 deletion src/node_http_common-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ NgHeader<T>::NgHeader(

template <typename T>
NgHeader<T>::NgHeader(NgHeader<T>&& other) noexcept
: env_(std::move(other.env_)),
: env_(other.env_),
name_(std::move(other.name_)),
value_(std::move(other.value_)),
token_(other.token_),
Expand Down