Переглянути джерело

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;

Завантаження…
Відмінити
Зберегти