ソースを参照

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;

読み込み中…
キャンセル
保存