summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Westlake <n.westlake@bath.ac.uk>2016-04-12 23:38:09 +0100
committerChris Mumford <cmumford@cmumford.com>2016-04-12 15:38:09 -0700
commitea992b467b9f3c892ae87267ba908e97d532b1b2 (patch)
treed98579834872a9b70a78593235067b539de29abb
parente84b5bdb5af6a4df8c3dc3f6f644b4ca3b6722cc (diff)
downloadleveldb-ea992b467b9f3c892ae87267ba908e97d532b1b2.tar.gz
Change std::uint64_t to uint64_t (#354)
-This fixes compile errors with default setup on RHEL 6 systems.
-rw-r--r--db/recovery_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/recovery_test.cc b/db/recovery_test.cc
index e0d0bf8..9596f42 100644
--- a/db/recovery_test.cc
+++ b/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;