Skip to content

Commit

Permalink
quic: fix up node_quic_stream includes
Browse files Browse the repository at this point in the history
This commit removes the unused <array> and <limits> includes, and adds
<memory> (for std::unique_ptr), and <utility> (for std::move).

PR-URL: #33921
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
danbev authored and jasnell committed Jun 19, 2020
1 parent 56967af commit 1bd88a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/quic/node_quic_stream.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
#include "v8.h"
#include "uv.h"

#include <array>
#include <algorithm>
#include <limits>
#include <memory>
#include <string>
#include <utility>

namespace node {

Expand Down

0 comments on commit 1bd88a3

Please sign in to comment.