Skip to content

Commit c0281f1

Browse files
committed
build: fix include order for building on windows
fallout from the tls_wrap feature landing
1 parent 5e4e8ec commit c0281f1

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/node_wrap.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
#ifndef NODE_WRAP_H
2323
#define NODE_WRAP_H
2424

25+
#include "v8.h"
26+
#include "uv.h"
27+
2528
#include "pipe_wrap.h"
2629
#include "tty_wrap.h"
2730
#include "tcp_wrap.h"
2831
#include "udp_wrap.h"
2932

30-
#include "v8.h"
31-
#include "uv.h"
32-
3333
namespace node {
3434

3535
extern v8::Persistent<v8::FunctionTemplate> pipeConstructorTmpl;

src/tls_wrap.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
#ifndef SRC_TLS_WRAP_H_
2323
#define SRC_TLS_WRAP_H_
2424

25-
#include <openssl/ssl.h>
26-
2725
#include "v8.h"
2826
#include "stream_wrap.h"
2927
#include "queue.h"
3028

29+
#include <openssl/ssl.h>
30+
3131
namespace node {
3232

3333
// Forward-declarations

0 commit comments

Comments
 (0)