Skip to content

Commit

Permalink
build: fix include order for building on windows
Browse files Browse the repository at this point in the history
fallout from the tls_wrap feature landing
  • Loading branch information
tjfontaine committed Jun 17, 2013
1 parent 5e4e8ec commit c0281f1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/node_wrap.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
#ifndef NODE_WRAP_H
#define NODE_WRAP_H

#include "v8.h"
#include "uv.h"

#include "pipe_wrap.h"
#include "tty_wrap.h"
#include "tcp_wrap.h"
#include "udp_wrap.h"

#include "v8.h"
#include "uv.h"

namespace node {

extern v8::Persistent<v8::FunctionTemplate> pipeConstructorTmpl;
Expand Down
4 changes: 2 additions & 2 deletions src/tls_wrap.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
#ifndef SRC_TLS_WRAP_H_
#define SRC_TLS_WRAP_H_

#include <openssl/ssl.h>

#include "v8.h"
#include "stream_wrap.h"
#include "queue.h"

#include <openssl/ssl.h>

namespace node {

// Forward-declarations
Expand Down

0 comments on commit c0281f1

Please sign in to comment.