mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-02-24 18:50:44 +00:00
Merge pull request #631 from mapbox/filename-warning
Fix missing filename in warning messages
This commit is contained in:
commit
de40169f16
@ -1,3 +1,7 @@
|
|||||||
|
## 1.31.3
|
||||||
|
|
||||||
|
* Fix the missing filename in JSON parsing warning messages
|
||||||
|
|
||||||
## 1.31.2
|
## 1.31.2
|
||||||
|
|
||||||
* Don't accept anything inside another JSON object's properties as a
|
* Don't accept anything inside another JSON object's properties as a
|
||||||
|
@ -252,6 +252,7 @@ struct json_serialize_action : json_feature_action {
|
|||||||
|
|
||||||
void parse_json(struct serialization_state *sst, json_pull *jp, int layer, std::string layername) {
|
void parse_json(struct serialization_state *sst, json_pull *jp, int layer, std::string layername) {
|
||||||
json_serialize_action jsa;
|
json_serialize_action jsa;
|
||||||
|
jsa.fname = sst->fname;
|
||||||
jsa.sst = sst;
|
jsa.sst = sst;
|
||||||
jsa.layer = layer;
|
jsa.layer = layer;
|
||||||
jsa.layername = layername;
|
jsa.layername = layername;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#ifndef VERSION_HPP
|
#ifndef VERSION_HPP
|
||||||
#define VERSION_HPP
|
#define VERSION_HPP
|
||||||
|
|
||||||
#define VERSION "v1.31.2"
|
#define VERSION "v1.31.3"
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user