[C++][Pistache] Add compatibility for nlohmann-json 3.5.0 (#3306)

* [C++][Pistache] Replace contains with find on json object

This makes generator compatible with nlohmann-json 3.5.0

* [C++][Pistache] Update Petstore sample
This commit is contained in:
Mateusz Szychowski (Muttley)
2019-07-13 13:31:14 +02:00
committed by Stefan Krismann
parent 4843dfc244
commit c1df082d65
9 changed files with 30 additions and 30 deletions

View File

@@ -56,24 +56,24 @@ void to_json(nlohmann::json& j, const Pet& o)
void from_json(const nlohmann::json& j, Pet& o)
{
if(j.contains("id"))
if(j.find("id") != j.end())
{
j.at("id").get_to(o.m_Id);
o.m_IdIsSet = true;
}
if(j.contains("category"))
if(j.find("category") != j.end())
{
j.at("category").get_to(o.m_Category);
o.m_CategoryIsSet = true;
}
j.at("name").get_to(o.m_Name);
j.at("photoUrls").get_to(o.m_PhotoUrls);
if(j.contains("tags"))
if(j.find("tags") != j.end())
{
j.at("tags").get_to(o.m_Tags);
o.m_TagsIsSet = true;
}
if(j.contains("status"))
if(j.find("status") != j.end())
{
j.at("status").get_to(o.m_Status);
o.m_StatusIsSet = true;