Fix indentation and bump version number

This commit is contained in:
Eric Fischer 2016-04-28 15:11:57 -07:00
parent adc70341ad
commit 023ce03672
4 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
## 1.11.1
* Make better use of C++ standard libraries
## 1.11.0
* Convert C source files to C++

View File

@ -979,7 +979,7 @@ int read_input(std::vector<source> &sources, char *fname, const char *layername,
nsources = 1;
}
std::vector<std::set<type_and_string> >file_keys;
std::vector<std::set<type_and_string> > file_keys;
long overall_offset = 0;
int source;

View File

@ -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);

View File

@ -1 +1 @@
#define VERSION "tippecanoe v1.11.0\n"
#define VERSION "tippecanoe v1.11.1\n"