| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 015842f commit 128c9f6
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,6 +14,10 @@ | |||
| 14 | 14 | #include "util-inl.h" | |
| 15 | 15 | ||
| 16 | 16 | #include <algorithm> | |
| 17 | + #include <memory> | ||
| 18 | + #include <string> | ||
| 19 | + #include <utility> | ||
| 20 | + #include <vector> | ||
| 17 | 21 | ||
| 18 | 22 | namespace node { | |
| 19 | 23 | ||
@@ -644,7 +648,7 @@ void Http2Stream::EmitStatistics() { | |||
| 644 | 648 | duration, | |
| 645 | 649 | statistics_); | |
| 646 | 650 | ||
| 647 | - env()->SetImmediate([entry = move(entry)](Environment* env) { | ||
| 651 | + env()->SetImmediate([entry = std::move(entry)](Environment* env) { | ||
| 648 | 652 | if (HasHttp2Observer(env)) | |
| 649 | 653 | entry->Notify(env); | |
| 650 | 654 | }); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments