From 023ce0367245b6a40ccfccf2eedd63a3df04c67c Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Thu, 28 Apr 2016 15:11:57 -0700 Subject: [PATCH] Fix indentation and bump version number --- CHANGELOG.md | 4 ++++ main.cpp | 2 +- mbtiles.hpp | 6 +++--- version.hpp | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01663e0..5af5b70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.11.1 + +* Make better use of C++ standard libraries + ## 1.11.0 * Convert C source files to C++ diff --git a/main.cpp b/main.cpp index 46b2f54..727e82f 100644 --- a/main.cpp +++ b/main.cpp @@ -979,7 +979,7 @@ int read_input(std::vector &sources, char *fname, const char *layername, nsources = 1; } - std::vector >file_keys; + std::vector > file_keys; long overall_offset = 0; int source; diff --git a/mbtiles.hpp b/mbtiles.hpp index 3f275bb..1d15abb 100644 --- a/mbtiles.hpp +++ b/mbtiles.hpp @@ -1,8 +1,8 @@ struct type_and_string { - int type; - std::string string; + int type; + std::string string; - bool operator<(const type_and_string &o) const; + bool operator<(const type_and_string &o) const; }; sqlite3 *mbtiles_open(char *dbname, char **argv, int forcetable); diff --git a/version.hpp b/version.hpp index 3539096..692985f 100644 --- a/version.hpp +++ b/version.hpp @@ -1 +1 @@ -#define VERSION "tippecanoe v1.11.0\n" +#define VERSION "tippecanoe v1.11.1\n"