瀏覽代碼

Change std::uint64_t to uint64_t (#354)

-This fixes compile errors with default setup on RHEL 6 systems.
pull/1/head
Nicholas Westlake 8 年之前
committed by Chris Mumford
父節點
當前提交
ea992b467b
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      db/recovery_test.cc

+ 2
- 2
db/recovery_test.cc 查看文件

@ -104,10 +104,10 @@ class RecoveryTest {
return GetFiles(kLogFile)[0];
}
std::vector<std::uint64_t> GetFiles(FileType t) {
std::vector<uint64_t> GetFiles(FileType t) {
std::vector<std::string> filenames;
ASSERT_OK(env_->GetChildren(dbname_, &filenames));
std::vector<std::uint64_t> result;
std::vector<uint64_t> result;
for (size_t i = 0; i < filenames.size(); i++) {
uint64_t number;
FileType type;

Loading…
取消
儲存