Explorar el Código

Change std::uint64_t to uint64_t (#354)

-This fixes compile errors with default setup on RHEL 6 systems.
pull/1/head
Nicholas Westlake hace 8 años
cometido por Chris Mumford
padre
commit
ea992b467b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      db/recovery_test.cc

+ 2
- 2
db/recovery_test.cc Ver fichero

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

Cargando…
Cancelar
Guardar