Browse Source

src: fix up imports

Make tools/check-imports.sh stop complaining, remove or reorder 'using'
statements.

PR-URL: https://github.com/node-forward/node/pull/16
Reviewed-By: Fedor Indutny <fedor@indutny.com>
archived-io.js-v0.12
Ben Noordhuis 10 years ago
committed by Fedor Indutny
parent
commit
75a461d099
  1. 1
      src/node_buffer.cc
  2. 1
      src/node_stat_watcher.cc
  3. 2
      src/tcp_wrap.cc

1
src/node_buffer.cc

@ -61,7 +61,6 @@
namespace node {
namespace Buffer {
using v8::ArrayBuffer;
using v8::Context;
using v8::EscapableHandleScope;
using v8::Function;

1
src/node_stat_watcher.cc

@ -41,7 +41,6 @@ using v8::HandleScope;
using v8::Integer;
using v8::Local;
using v8::Object;
using v8::String;
using v8::Value;

2
src/tcp_wrap.cc

@ -36,6 +36,7 @@
namespace node {
using v8::Boolean;
using v8::Context;
using v8::EscapableHandleScope;
using v8::Function;
@ -50,7 +51,6 @@ using v8::PropertyAttribute;
using v8::String;
using v8::Undefined;
using v8::Value;
using v8::Boolean;
typedef class ReqWrap<uv_connect_t> ConnectWrap;

Loading…
Cancel
Save