You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use boost c++ to read/write .json file. The problem here is boost will automatically escape (convert) to string type. Therefore, if I create a json object with integer and boolean type, all of us will come string type in .json file.
I use Validator validator(Validator::kWeakTypes) to face with integer type but it still doesn't work with boolean type.
How can I resolve it?
The text was updated successfully, but these errors were encountered:
I use boost c++ to read/write .json file. The problem here is boost will automatically escape (convert) to string type. Therefore, if I create a json object with integer and boolean type, all of us will come string type in .json file.
I use Validator validator(Validator::kWeakTypes) to face with integer type but it still doesn't work with boolean type.
How can I resolve it?
The text was updated successfully, but these errors were encountered: