Procházet zdrojové kódy

Change std::uint64_t to uint64_t (#354)

-This fixes compile errors with default setup on RHEL 6 systems.
pull/1/head
Nicholas Westlake před 8 roky
odevzdal Chris Mumford
rodič
revize
ea992b467b
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      db/recovery_test.cc

+ 2
- 2
db/recovery_test.cc Zobrazit soubor

@ -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;

Načítá se…
Zrušit
Uložit