Skip to content

Commit fa6fd18

Browse files
committed
fixup! src: reduce includes of node_internals.h
1 parent e1d0070 commit fa6fd18

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/node_http2.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#include "node_http2.h"
21
#include "aliased_buffer.h"
32
#include "debug_utils.h"
43
#include "node.h"
54
#include "node_buffer.h"
5+
#include "node_http2.h"
66
#include "node_http2_state.h"
77
#include "node_perf.h"
88
#include "util.h"

src/node_http2.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33

44
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
55

6+
// FIXME(joyeecheung): nghttp2.h needs stdint.h to compile on Windows
7+
#include <stdint.h>
68
#include "nghttp2/nghttp2.h"
9+
710
#include "node_http2_state.h"
811
#include "node_perf.h"
912
#include "stream_base-inl.h"

0 commit comments

Comments
 (0)