a143ef9b38
Summary: Change namespace from leveldb to rocksdb. This allows a single application to link in open-source leveldb code as well as rocksdb code into the same process. Test Plan: compile rocksdb Reviewers: emayanke Reviewed By: emayanke CC: leveldb Differential Revision: https://reviews.facebook.net/D13287
12 lines
286 B
C++
12 lines
286 B
C++
// Copyright (c) 2012 Facebook. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "rocksdb/ldb_tool.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
rocksdb::LDBTool tool;
|
|
tool.Run(argc, argv);
|
|
return 0;
|
|
}
|