소스 검색

Change std::uint64_t to uint64_t (#354)

-This fixes compile errors with default setup on RHEL 6 systems.
naive_version
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;

불러오는 중...
취소
저장