Skip to content

Commit

Permalink
Change std::uint64_t to uint64_t (bitcoin#354)
Browse files Browse the repository at this point in the history
-This fixes compile errors with default setup on RHEL 6 systems.
  • Loading branch information
Nicholas Westlake authored and cmumford committed Apr 12, 2016
1 parent e84b5bd commit ea992b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/recovery_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ea992b4

Please sign in to comment.