0376869f05
Summary: As title. This is part of an fb-internal task. First, remove all `using namespace` statements if applicable. Next, utilize multiple build platforms and see if anything is broken. Should anything become broken, fix the compilation errors with as little extra change as possible. Pull Request resolved: https://github.com/facebook/rocksdb/pull/9369 Test Plan: internal build and make check make clean && make static_lib && cd examples && make all Reviewed By: pdillinger Differential Revision: D33517260 Pulled By: riversand963 fbshipit-source-id: 3fc4ce6402a073421dfd9a9b2d1c79441dca7a40
15 lines
301 B
C++
15 lines
301 B
C++
// Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
#ifndef BUILDING_NODE_EXTENSION
|
|
#define BUILDING_NODE_EXTENSION
|
|
#endif
|
|
|
|
#include <node.h>
|
|
#include <v8.h>
|
|
#include "db/_wrapper.h"
|
|
|
|
void InitAll(Handle<Object> exports) {
|
|
DBWrapper::Init(exports);
|
|
}
|
|
|
|
NODE_MODULE(rdb, InitAll)
|