summaryrefslogtreecommitdiff
path: root/include/leveldb/db.h
diff options
context:
space:
mode:
authorChris Mumford <cmumford@chromium.org>2014-05-01 13:43:12 -0700
committerChris Mumford <cmumford@chromium.org>2014-05-01 13:44:03 -0700
commite353fbc7ea81f12a5694991b708f8f45343594b1 (patch)
tree93f820975442c250855c58bb7620b522a494c944 /include/leveldb/db.h
parent269fc6ca9416129248db5ca57050cd5d39d177c8 (diff)
downloadleveldb-e353fbc7ea81f12a5694991b708f8f45343594b1.tar.gz
Release LevelDB 1.17v1.171.17
- Cleanup: delete unused IntSetToString It was added in http://cr/19491949 (and was referenced at the time). The last reference was removed in http://cr/19507363. This fixes warning/error with pre-release crosstoolv18: 'std::string leveldb::{anonymous}::IntSetToString(const std::set<long unsigned int>&)' defined but not used [-Werror=unused-function] - Added arm64 and and armv7s to IOS build as suggested on leveldb mailing list. - Changed local variable type from int to size_t This eliminates compiler warning/error and resolves https://code.google.com/p/leveldb/issues/detail?id=140
Diffstat (limited to 'include/leveldb/db.h')
-rw-r--r--include/leveldb/db.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/leveldb/db.h b/include/leveldb/db.h
index 4f3a851..40851b2 100644
--- a/include/leveldb/db.h
+++ b/include/leveldb/db.h
@@ -14,7 +14,7 @@ namespace leveldb {
// Update Makefile if you change these
static const int kMajorVersion = 1;
-static const int kMinorVersion = 16;
+static const int kMinorVersion = 17;
struct Options;
struct ReadOptions;