Skip to content
Snippets Groups Projects
Commit f51c4c82 authored by Karthic Rao's avatar Karthic Rao
Browse files

rocksdb headers link removed form the include section and added onto the comments section above

parent 49bc8fdf
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,8 @@
*
* compile : g++ merge.cc <path_to_rocksDB_installation>/librocksdb.so.4.1 --std=c++11 -lstdc++fs
* usage : ./<executable> <folder_having_rocksDB_directories_to_be_merged> <destination_folder>
*
* find the rocksdb headers here https://github.com/facebook/rocksdb/tree/master/include/rocksdb
*
*/
......@@ -22,7 +24,6 @@
#include <cstdio>
#include <iostream>
#include <string>
//find the rocksdb headers here https://github.com/facebook/rocksdb/tree/master/include/rocksdb
#include "rocksdb/db.h"
#include "rocksdb/options.h"
......
......@@ -12,11 +12,12 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*
* compile : g++ merge_heap.cc <path_to_rocksDB_installation>/librocksdb.so.4.1 --std=c++11 -lstdc++fs
* usage : ./<executable> <folder_having_rocksDB_directories_to_be_merged> <destination_folder>
*
*/
*
* rocksdb headers can be found here https://github.com/facebook/rocksdb/tree/master/include/rocksdb
*/
#include <fstream>
#include <cstdio>
......@@ -24,7 +25,6 @@
#include <string>
#include <queue>
#include <vector>
//rocksdb headers can be found here https://github.com/facebook/rocksdb/tree/master/include/rocksdb
#include "rocksdb/db.h"
#include "rocksdb/options.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment