[cpp-pistache] Fix compilation of petstore for Pistache (#497)

* Fix compilation of petstore for Pistache
Add Map support

* Add support for ByteArray

* Add Support for ByteArray in cpprest

* Implement TODOs
This commit is contained in:
sunn
2018-07-20 16:04:25 +02:00
committed by William Cheng
parent 1b2d12286f
commit 97d6b71460
29 changed files with 284 additions and 68 deletions

View File

@@ -55,7 +55,7 @@ bool ModelBase::toJson( bool const value )
return value;
}
nlohmann::json ModelBase::toJson(ModelBase content )
nlohmann::json ModelBase::toJson(ModelBase const& content )
{
return content.toJson();
}