Browse Source

src: fix up unused/unordered imports

v0.11.7-release
Ben Noordhuis 12 years ago
parent
commit
9fc006618f
  1. 1
      src/node_buffer.cc
  2. 2
      src/node_contextify.cc
  3. 2
      src/node_win32_etw_provider.cc
  4. 1
      src/timer_wrap.cc
  5. 3
      src/tls_wrap.cc

1
src/node_buffer.cc

@ -66,7 +66,6 @@ using v8::Object;
using v8::Persistent;
using v8::String;
using v8::Uint32;
using v8::Undefined;
using v8::Value;
static Persistent<Function> p_buffer_fn;

2
src/node_contextify.cc

@ -43,8 +43,8 @@ using v8::PropertyCallbackInfo;
using v8::Script;
using v8::String;
using v8::TryCatch;
using v8::Value;
using v8::V8;
using v8::Value;
class ContextifyContext : ObjectWrap {

2
src/node_win32_etw_provider.cc

@ -26,8 +26,8 @@
namespace node {
using v8::V8;
using v8::JitCodeEvent;
using v8::V8;
HMODULE advapi;
REGHANDLE node_provider;

1
src/timer_wrap.cc

@ -34,7 +34,6 @@ using v8::HandleScope;
using v8::Integer;
using v8::Local;
using v8::Object;
using v8::String;
using v8::Value;
const uint32_t kOnTimeout = 0;

3
src/tls_wrap.cc

@ -31,9 +31,8 @@
namespace node {
using crypto::SecureContext;
using crypto::SSLWrap;
using v8::Array;
using crypto::SecureContext;
using v8::Boolean;
using v8::Exception;
using v8::Function;

Loading…
Cancel
Save