mirror of
https://github.com/facebook/rocksdb.git
synced 2024-12-03 14:52:53 +00:00
1186192ed1
Summary: Replace include/leveldb with include/rocksdb. Test Plan: make clean; make check make clean; make release Differential Revision: https://reviews.facebook.net/D12489
15 lines
316 B
C++
15 lines
316 B
C++
#ifndef STORAGE_ROCKSDB_INCLUDE_TYPES_H_
|
|
#define STORAGE_ROCKSDB_INCLUDE_TYPES_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace leveldb {
|
|
|
|
// Define all public custom types here.
|
|
|
|
// Represents a sequence number in a WAL file.
|
|
typedef uint64_t SequenceNumber;
|
|
|
|
} // namespace leveldb
|
|
#endif // STORAGE_ROCKSDB_INCLUDE_TYPES_H_
|