Browse Source

core: use proper #include directives

v0.9.1-release
Ben Noordhuis 13 years ago
parent
commit
ff4a9d381d
  1. 6
      src/cares_wrap.cc
  2. 4
      src/fs_event_wrap.cc
  3. 4
      src/handle_wrap.cc
  4. 34
      src/node.cc
  5. 6
      src/node.h
  6. 6
      src/node_buffer.cc
  7. 6
      src/node_buffer.h
  8. 4
      src/node_constants.cc
  9. 4
      src/node_constants.h
  10. 12
      src/node_crypto.cc
  11. 8
      src/node_crypto.h
  12. 2
      src/node_dtrace.cc
  13. 4
      src/node_dtrace.h
  14. 4
      src/node_file.h
  15. 10
      src/node_http_parser.cc
  16. 2
      src/node_http_parser.h
  17. 6
      src/node_io_watcher.cc
  18. 4
      src/node_io_watcher.h
  19. 2
      src/node_javascript.cc
  20. 2
      src/node_javascript.h
  21. 2
      src/node_main.cc
  22. 4
      src/node_object_wrap.h
  23. 6
      src/node_os.cc
  24. 4
      src/node_os.h
  25. 4
      src/node_script.cc
  26. 8
      src/node_script.h
  27. 2
      src/node_signal_watcher.cc
  28. 6
      src/node_signal_watcher.h
  29. 2
      src/node_stat_watcher.cc
  30. 4
      src/node_stat_watcher.h
  31. 2
      src/node_string.h
  32. 6
      src/node_zlib.cc
  33. 12
      src/pipe_wrap.cc
  34. 2
      src/pipe_wrap.h
  35. 6
      src/process_wrap.cc
  36. 14
      src/stream_wrap.cc
  37. 6
      src/stream_wrap.h
  38. 12
      src/tcp_wrap.cc
  39. 2
      src/tcp_wrap.h
  40. 4
      src/timer_wrap.cc
  41. 10
      src/tty_wrap.cc
  42. 8
      src/udp_wrap.cc
  43. 2
      src/v8_typed_array.h

6
src/cares_wrap.cc

@ -20,9 +20,9 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <assert.h> #include <assert.h>
#include <node.h> #include "node.h"
#include <req_wrap.h> #include "req_wrap.h"
#include <uv.h> #include "uv.h"
#include <string.h> #include <string.h>

4
src/fs_event_wrap.cc

@ -19,8 +19,8 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <handle_wrap.h> #include "handle_wrap.h"
#include <stdlib.h> #include <stdlib.h>

4
src/handle_wrap.cc

@ -19,8 +19,8 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <handle_wrap.h> #include "handle_wrap.h"
namespace node { namespace node {

34
src/node.cc

@ -19,13 +19,13 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <uv.h> #include "uv.h"
#include <v8-debug.h> #include "v8-debug.h"
#ifdef HAVE_DTRACE #ifdef HAVE_DTRACE
# include <node_dtrace.h> # include "node_dtrace.h"
#endif #endif
#include <locale.h> #include <locale.h>
@ -61,25 +61,25 @@ typedef int mode_t;
# include <grp.h> /* getgrnam() */ # include <grp.h> /* getgrnam() */
#endif #endif
#include <node_buffer.h> #include "node_buffer.h"
#ifdef __POSIX__ #ifdef __POSIX__
# include <node_io_watcher.h> # include "node_io_watcher.h"
#endif #endif
#include <node_file.h> #include "node_file.h"
#include <node_http_parser.h> #include "node_http_parser.h"
#ifdef __POSIX__ #ifdef __POSIX__
# include <node_signal_watcher.h> # include "node_signal_watcher.h"
# include <node_stat_watcher.h> # include "node_stat_watcher.h"
#endif #endif
#include <node_constants.h> #include "node_constants.h"
#include <node_javascript.h> #include "node_javascript.h"
#include <node_version.h> #include "node_version.h"
#include <node_string.h> #include "node_string.h"
#if HAVE_OPENSSL #if HAVE_OPENSSL
# include <node_crypto.h> # include "node_crypto.h"
#endif #endif
#include <node_script.h> #include "node_script.h"
#include <v8_typed_array.h> #include "v8_typed_array.h"
using namespace v8; using namespace v8;

6
src/node.h

@ -58,13 +58,13 @@
# define SIGKILL 9 # define SIGKILL 9
#endif #endif
#include <uv.h> #include "uv.h"
#include <v8.h> #include "v8.h"
#include <sys/types.h> /* struct stat */ #include <sys/types.h> /* struct stat */
#include <sys/stat.h> #include <sys/stat.h>
#include <assert.h> #include <assert.h>
#include <node_object_wrap.h> #include "node_object_wrap.h"
#if NODE_WANT_INTERNALS #if NODE_WANT_INTERNALS
# include "node_internals.h" # include "node_internals.h"

6
src/node_buffer.cc

@ -20,10 +20,10 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <node_buffer.h> #include "node_buffer.h"
#include <v8.h> #include "v8.h"
#include <assert.h> #include <assert.h>
#include <stdlib.h> // malloc, free #include <stdlib.h> // malloc, free

6
src/node_buffer.h

@ -22,9 +22,9 @@
#ifndef NODE_BUFFER_H_ #ifndef NODE_BUFFER_H_
#define NODE_BUFFER_H_ #define NODE_BUFFER_H_
#include <node.h> #include "node.h"
#include <node_object_wrap.h> #include "node_object_wrap.h"
#include <v8.h> #include "v8.h"
#include <assert.h> #include <assert.h>
namespace node { namespace node {

4
src/node_constants.cc

@ -19,9 +19,9 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node_constants.h> #include "node_constants.h"
#include <uv.h> #include "uv.h"
#include <errno.h> #include <errno.h>
#if !defined(_MSC_VER) #if !defined(_MSC_VER)

4
src/node_constants.h

@ -22,8 +22,8 @@
#ifndef SRC_CONSTANTS_H_ #ifndef SRC_CONSTANTS_H_
#define SRC_CONSTANTS_H_ #define SRC_CONSTANTS_H_
#include <node.h> #include "node.h"
#include <v8.h> #include "v8.h"
namespace node { namespace node {
void DefineConstants(v8::Handle<v8::Object> target); void DefineConstants(v8::Handle<v8::Object> target);

12
src/node_crypto.cc

@ -19,13 +19,13 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node_crypto.h> #include "node_crypto.h"
#include <node_crypto_groups.h> #include "node_crypto_groups.h"
#include <v8.h> #include "v8.h"
#include <node.h> #include "node.h"
#include <node_buffer.h> #include "node_buffer.h"
#include <node_root_certs.h> #include "node_root_certs.h"
#include <string.h> #include <string.h>
#ifdef _MSC_VER #ifdef _MSC_VER

8
src/node_crypto.h

@ -22,10 +22,10 @@
#ifndef SRC_NODE_CRYPTO_H_ #ifndef SRC_NODE_CRYPTO_H_
#define SRC_NODE_CRYPTO_H_ #define SRC_NODE_CRYPTO_H_
#include <node.h> #include "node.h"
#include <node_object_wrap.h> #include "node_object_wrap.h"
#include <v8.h> #include "v8.h"
#include <openssl/ssl.h> #include <openssl/ssl.h>
#include <openssl/err.h> #include <openssl/err.h>
@ -37,7 +37,7 @@
#include <openssl/rand.h> #include <openssl/rand.h>
#ifdef OPENSSL_NPN_NEGOTIATED #ifdef OPENSSL_NPN_NEGOTIATED
#include <node_buffer.h> #include "node_buffer.h"
#endif #endif
#define EVP_F_EVP_DECRYPTFINAL 101 #define EVP_F_EVP_DECRYPTFINAL 101

2
src/node_dtrace.cc

@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node_dtrace.h> #include "node_dtrace.h"
#include <string.h> #include <string.h>
#ifdef HAVE_DTRACE #ifdef HAVE_DTRACE

4
src/node_dtrace.h

@ -22,8 +22,8 @@
#ifndef NODE_DTRACE_H_ #ifndef NODE_DTRACE_H_
#define NODE_DTRACE_H_ #define NODE_DTRACE_H_
#include <node.h> #include "node.h"
#include <v8.h> #include "v8.h"
extern "C" { extern "C" {

4
src/node_file.h

@ -22,8 +22,8 @@
#ifndef SRC_FILE_H_ #ifndef SRC_FILE_H_
#define SRC_FILE_H_ #define SRC_FILE_H_
#include <node.h> #include "node.h"
#include <v8.h> #include "v8.h"
namespace node { namespace node {

10
src/node_http_parser.cc

@ -19,13 +19,13 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node_http_parser.h> #include "node_http_parser.h"
#include <v8.h> #include "v8.h"
#include <node.h> #include "node.h"
#include <node_buffer.h> #include "node_buffer.h"
#include <http_parser.h> #include "http_parser.h"
#include <string.h> /* strdup() */ #include <string.h> /* strdup() */
#if !defined(_MSC_VER) #if !defined(_MSC_VER)

2
src/node_http_parser.h

@ -22,7 +22,7 @@
#ifndef NODE_HTTP_PARSER #ifndef NODE_HTTP_PARSER
#define NODE_HTTP_PARSER #define NODE_HTTP_PARSER
#include <v8.h> #include "v8.h"
namespace node { namespace node {

6
src/node_io_watcher.cc

@ -19,10 +19,10 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node_io_watcher.h> #include "node_io_watcher.h"
#include <node.h> #include "node.h"
#include <v8.h> #include "v8.h"
#include <assert.h> #include <assert.h>

4
src/node_io_watcher.h

@ -22,8 +22,8 @@
#ifndef NODE_IO_H_ #ifndef NODE_IO_H_
#define NODE_IO_H_ #define NODE_IO_H_
#include <node_object_wrap.h> #include "node_object_wrap.h"
#include <uv-private/ev.h> #include "uv-private/ev.h"
namespace node { namespace node {

2
src/node_javascript.cc

@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <v8.h> #include "v8.h"
#include "node.h" #include "node.h"
#include "node_natives.h" #include "node_natives.h"
#include "node_string.h" #include "node_string.h"

2
src/node_javascript.h

@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <v8.h> #include "v8.h"
namespace node { namespace node {

2
src/node_main.cc

@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#ifdef _WIN32 #ifdef _WIN32
int wmain(int argc, wchar_t *wargv[]) { int wmain(int argc, wchar_t *wargv[]) {

4
src/node_object_wrap.h

@ -22,8 +22,8 @@
#ifndef object_wrap_h #ifndef object_wrap_h
#define object_wrap_h #define object_wrap_h
#include <node.h> #include "node.h"
#include <v8.h> #include "v8.h"
#include <assert.h> #include <assert.h>
namespace node { namespace node {

6
src/node_os.cc

@ -20,10 +20,10 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <node_os.h> #include "node_os.h"
#include <v8.h> #include "v8.h"
#include <errno.h> #include <errno.h>
#include <string.h> #include <string.h>

4
src/node_os.h

@ -22,8 +22,8 @@
#ifndef node_os_h #ifndef node_os_h
#define node_os_h #define node_os_h
#include <node.h> #include "node.h"
#include <v8.h> #include "v8.h"
namespace node { namespace node {

4
src/node_script.cc

@ -19,8 +19,8 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <node_script.h> #include "node_script.h"
#include <assert.h> #include <assert.h>
namespace node { namespace node {

8
src/node_script.h

@ -22,10 +22,10 @@
#ifndef node_script_h #ifndef node_script_h
#define node_script_h #define node_script_h
#include <node.h> #include "node.h"
#include <node_object_wrap.h> #include "node_object_wrap.h"
#include <v8.h> #include "v8.h"
#include <uv.h> #include "uv.h"
namespace node { namespace node {

2
src/node_signal_watcher.cc

@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node_signal_watcher.h> #include "node_signal_watcher.h"
#include <assert.h> #include <assert.h>
namespace node { namespace node {

6
src/node_signal_watcher.h

@ -22,9 +22,9 @@
#ifndef NODE_SIGNAL_WATCHER_H_ #ifndef NODE_SIGNAL_WATCHER_H_
#define NODE_SIGNAL_WATCHER_H_ #define NODE_SIGNAL_WATCHER_H_
#include <node.h> #include "node.h"
#include <v8.h> #include "v8.h"
#include <uv-private/ev.h> #include "uv-private/ev.h"
namespace node { namespace node {

2
src/node_stat_watcher.cc

@ -19,7 +19,7 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node_stat_watcher.h> #include "node_stat_watcher.h"
#include <assert.h> #include <assert.h>
#include <string.h> #include <string.h>

4
src/node_stat_watcher.h

@ -22,8 +22,8 @@
#ifndef NODE_STAT_WATCHER_H_ #ifndef NODE_STAT_WATCHER_H_
#define NODE_STAT_WATCHER_H_ #define NODE_STAT_WATCHER_H_
#include <node.h> #include "node.h"
#include <uv-private/ev.h> #include "uv-private/ev.h"
namespace node { namespace node {

2
src/node_string.h

@ -22,7 +22,7 @@
#ifndef SRC_NODE_STRING_H_ #ifndef SRC_NODE_STRING_H_
#define SRC_NODE_STRING_H_ #define SRC_NODE_STRING_H_
#include <v8.h> #include "v8.h"
namespace node { namespace node {

6
src/node_zlib.cc

@ -20,15 +20,15 @@
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <v8.h> #include "v8.h"
#include <errno.h> #include <errno.h>
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <sys/types.h> #include <sys/types.h>
#include <zlib.h> #include <zlib.h>
#include <node.h> #include "node.h"
#include <node_buffer.h> #include "node_buffer.h"
namespace node { namespace node {

12
src/pipe_wrap.cc

@ -19,12 +19,12 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <node_buffer.h> #include "node_buffer.h"
#include <req_wrap.h> #include "req_wrap.h"
#include <handle_wrap.h> #include "handle_wrap.h"
#include <stream_wrap.h> #include "stream_wrap.h"
#include <pipe_wrap.h> #include "pipe_wrap.h"
#define UNWRAP \ #define UNWRAP \
assert(!args.Holder().IsEmpty()); \ assert(!args.Holder().IsEmpty()); \

2
src/pipe_wrap.h

@ -21,7 +21,7 @@
#ifndef PIPE_WRAP_H_ #ifndef PIPE_WRAP_H_
#define PIPE_WRAP_H_ #define PIPE_WRAP_H_
#include <stream_wrap.h> #include "stream_wrap.h"
namespace node { namespace node {

6
src/process_wrap.cc

@ -19,9 +19,9 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <handle_wrap.h> #include "handle_wrap.h"
#include <pipe_wrap.h> #include "pipe_wrap.h"
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>

14
src/stream_wrap.cc

@ -19,13 +19,13 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <node_buffer.h> #include "node_buffer.h"
#include <handle_wrap.h> #include "handle_wrap.h"
#include <stream_wrap.h> #include "stream_wrap.h"
#include <pipe_wrap.h> #include "pipe_wrap.h"
#include <tcp_wrap.h> #include "tcp_wrap.h"
#include <req_wrap.h> #include "req_wrap.h"
#include <stdlib.h> // abort() #include <stdlib.h> // abort()

6
src/stream_wrap.h

@ -22,9 +22,9 @@
#ifndef STREAM_WRAP_H_ #ifndef STREAM_WRAP_H_
#define STREAM_WRAP_H_ #define STREAM_WRAP_H_
#include <v8.h> #include "v8.h"
#include <node.h> #include "node.h"
#include <handle_wrap.h> #include "handle_wrap.h"
namespace node { namespace node {

12
src/tcp_wrap.cc

@ -19,12 +19,12 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <node_buffer.h> #include "node_buffer.h"
#include <req_wrap.h> #include "req_wrap.h"
#include <handle_wrap.h> #include "handle_wrap.h"
#include <stream_wrap.h> #include "stream_wrap.h"
#include <tcp_wrap.h> #include "tcp_wrap.h"
#include <stdlib.h> #include <stdlib.h>

2
src/tcp_wrap.h

@ -21,7 +21,7 @@
#ifndef TCP_WRAP_H_ #ifndef TCP_WRAP_H_
#define TCP_WRAP_H_ #define TCP_WRAP_H_
#include <stream_wrap.h> #include "stream_wrap.h"
namespace node { namespace node {

4
src/timer_wrap.cc

@ -19,8 +19,8 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <handle_wrap.h> #include "handle_wrap.h"
#define UNWRAP \ #define UNWRAP \
assert(!args.Holder().IsEmpty()); \ assert(!args.Holder().IsEmpty()); \

10
src/tty_wrap.cc

@ -19,11 +19,11 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <node_buffer.h> #include "node_buffer.h"
#include <req_wrap.h> #include "req_wrap.h"
#include <handle_wrap.h> #include "handle_wrap.h"
#include <stream_wrap.h> #include "stream_wrap.h"
namespace node { namespace node {

8
src/udp_wrap.cc

@ -19,11 +19,11 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <node.h> #include "node.h"
#include <node_buffer.h> #include "node_buffer.h"
#include <req_wrap.h> #include "req_wrap.h"
#include <handle_wrap.h> #include "handle_wrap.h"
#include <stdlib.h> #include <stdlib.h>

2
src/v8_typed_array.h

@ -22,7 +22,7 @@
#ifndef V8_TYPED_ARRAY_H_ #ifndef V8_TYPED_ARRAY_H_
#define V8_TYPED_ARRAY_H_ #define V8_TYPED_ARRAY_H_
#include <v8.h> #include "v8.h"
namespace v8_typed_array { namespace v8_typed_array {

Loading…
Cancel
Save