Skip to content

Commit a75d435

Browse files
committed
Clean up layering of storage/leveldb/...
With these changes, this package should be properly cleaned up and not require any further changes.
1 parent b234f65 commit a75d435

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

db/snapshot.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#ifndef STORAGE_LEVELDB_DB_SNAPSHOT_H_
66
#define STORAGE_LEVELDB_DB_SNAPSHOT_H_
77

8+
#include "db/dbformat.h"
89
#include "leveldb/db.h"
910

1011
namespace leveldb {

db/write_batch_internal.h

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#ifndef STORAGE_LEVELDB_DB_WRITE_BATCH_INTERNAL_H_
66
#define STORAGE_LEVELDB_DB_WRITE_BATCH_INTERNAL_H_
77

8+
#include "db/dbformat.h"
89
#include "leveldb/write_batch.h"
910

1011
namespace leveldb {

table/iterator_wrapper.h

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
#ifndef STORAGE_LEVELDB_TABLE_ITERATOR_WRAPPER_H_
66
#define STORAGE_LEVELDB_TABLE_ITERATOR_WRAPPER_H_
77

8+
#include "leveldb/iterator.h"
9+
#include "leveldb/slice.h"
10+
811
namespace leveldb {
912

1013
// A internal wrapper class with an interface similar to Iterator that

0 commit comments

Comments
 (0)