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).
  • Loading branch information
danbev committed Jun 18, 2020
1 parent 14d012e commit c9b44a6
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 c9b44a6

Please sign in to comment.