Merge pull request #631 from mapbox/filename-warning

Fix missing filename in warning messages
This commit is contained in:
Eric Fischer 2018-08-16 14:20:38 -07:00 committed by GitHub
commit de40169f16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 1.31.3
* Fix the missing filename in JSON parsing warning messages
## 1.31.2
* Don't accept anything inside another JSON object's properties as a

View File

@ -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) {
json_serialize_action jsa;
jsa.fname = sst->fname;
jsa.sst = sst;
jsa.layer = layer;
jsa.layername = layername;

View File

@ -1,6 +1,6 @@
#ifndef VERSION_HPP
#define VERSION_HPP
#define VERSION "v1.31.2"
#define VERSION "v1.31.3"
#endif