Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
src: use qualified std::move call in node_http2
Also iwyu in that file.

Closes: #45543
PR-URL: #45555
Fixes: #45543
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
Reviewed-By: Minwoo Jung <nodecorelab@gmail.com>
Reviewed-By: Stephen Belanger <admin@stephenbelanger.com>
  • Loading branch information
targos authored and danielleadams committed Jan 3, 2023
1 parent 30a8604 commit 3f6f8f9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/node_http2.cc
Expand Up @@ -14,6 +14,10 @@
#include "util-inl.h"

#include <algorithm>
#include <memory>
#include <string>
#include <utility>
#include <vector>

namespace node {

Expand Down Expand Up @@ -644,7 +648,7 @@ void Http2Stream::EmitStatistics() {
duration,
statistics_);

env()->SetImmediate([entry = move(entry)](Environment* env) {
env()->SetImmediate([entry = std::move(entry)](Environment* env) {
if (HasHttp2Observer(env))
entry->Notify(env);
});
Expand Down

0 comments on commit 3f6f8f9

Please sign in to comment.