Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
quic: fix includes for node_quic_buffer.cc
Browse files Browse the repository at this point in the history
This commit updates the includes for node_quic_buffer and removes the
include of array, functional, and vector which are not used. It also
adds memory for std::unique_ptr, and utility for std::move.

PR-URL: #379
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
danbev committed May 4, 2020
1 parent c408e8d commit be0bd95
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/quic/node_quic_buffer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
#include "util.h"
#include "uv.h"

#include <array>
#include <algorithm>
#include <functional>
#include <vector>
#include <memory>
#include <utility>

namespace node {
namespace quic {
Expand Down

0 comments on commit be0bd95

Please sign in to comment.