mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-03-23 20:35:16 +00:00
Fix indentation and bump version number
This commit is contained in:
parent
adc70341ad
commit
023ce03672
@ -1,3 +1,7 @@
|
||||
## 1.11.1
|
||||
|
||||
* Make better use of C++ standard libraries
|
||||
|
||||
## 1.11.0
|
||||
|
||||
* Convert C source files to C++
|
||||
|
2
main.cpp
2
main.cpp
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -1 +1 @@
|
||||
#define VERSION "tippecanoe v1.11.0\n"
|
||||
#define VERSION "tippecanoe v1.11.1\n"
|
||||
|
Loading…
x
Reference in New Issue
Block a user