diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/leveldb/db.h | 2 | ||||
-rw-r--r-- | include/leveldb/env.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/leveldb/db.h b/include/leveldb/db.h index 259a81f..5ffb29d 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 = 14; +static const int kMinorVersion = 15; struct Options; struct ReadOptions; diff --git a/include/leveldb/env.h b/include/leveldb/env.h index fa32289..b2072d0 100644 --- a/include/leveldb/env.h +++ b/include/leveldb/env.h @@ -13,9 +13,9 @@ #ifndef STORAGE_LEVELDB_INCLUDE_ENV_H_ #define STORAGE_LEVELDB_INCLUDE_ENV_H_ -#include <cstdarg> #include <string> #include <vector> +#include <stdarg.h> #include <stdint.h> #include "leveldb/status.h" |