Skip to content

Commit ea992b4

Browse files
Nicholas Westlakecmumford
Nicholas Westlake
authored andcommitted
Change std::uint64_t to uint64_t (bitcoin#354)
-This fixes compile errors with default setup on RHEL 6 systems.
1 parent e84b5bd commit ea992b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

db/recovery_test.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ class RecoveryTest {
104104
return GetFiles(kLogFile)[0];
105105
}
106106

107-
std::vector<std::uint64_t> GetFiles(FileType t) {
107+
std::vector<uint64_t> GetFiles(FileType t) {
108108
std::vector<std::string> filenames;
109109
ASSERT_OK(env_->GetChildren(dbname_, &filenames));
110-
std::vector<std::uint64_t> result;
110+
std::vector<uint64_t> result;
111111
for (size_t i = 0; i < filenames.size(); i++) {
112112
uint64_t number;
113113
FileType type;

0 commit comments

Comments
 (0)