Fix missing filename in warning messages

This commit is contained in:
Eric Fischer 2018-08-16 13:37:33 -07:00
parent 1ef2005f04
commit 0a3e4ad561
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