Merge pull request #11192 from cc-engineering/mysansson-fix

[myjansson] Fix const_cast
This commit is contained in:
LaGrunge 2019-07-09 14:21:49 +03:00 committed by GitHub
commit af59871c16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -290,7 +290,7 @@ void ToJSONObject(json_t & root, std::string const & field, std::vector<T> const
template <typename T>
void FromJSONObjectOptionalField(json_t * root, std::string const & field, std::vector<T> & result)
{
FromJSONObjectOptionalField(const_cast<json_t *>(root), field, result);
FromJSONObjectOptionalField(const_cast<json_t const *>(root), field, result);
}
template <typename T>