Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup: address c++ linter
  • Loading branch information
BridgeAR committed Aug 20, 2018
commit 65993be9e0ae2ae58e9d12b87cf23c17179a4b2a
12 changes: 6 additions & 6 deletions src/node_util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
namespace node {
namespace util {

using v8::ALL_PROPERTIES;
using v8::Array;
using v8::Context;
using v8::FunctionCallbackInfo;
using v8::Integer;
using v8::Local;
using v8::Object;
using v8::ONLY_CONFIGURABLE;
using v8::ONLY_ENUMERABLE;
using v8::ONLY_WRITABLE;
using v8::Private;
using v8::Promise;
using v8::Proxy;
using v8::SKIP_STRINGS;
using v8::SKIP_SYMBOLS;
using v8::String;
using v8::Uint32;
using v8::Value;
using v8::ALL_PROPERTIES;
using v8::ONLY_WRITABLE;
using v8::ONLY_ENUMERABLE;
using v8::ONLY_CONFIGURABLE;
using v8::SKIP_STRINGS;
using v8::SKIP_SYMBOLS;

static void GetOwnNonIndexProperties(
const FunctionCallbackInfo<Value>& args) {
Expand Down