Raphael Traviss

Results 2 comments of Raphael Traviss

Moving the contents of the std::vector into crow::json::wvalue doesn't seem to work; the line `crow::json::wvalue result = std::move(crew_members);` below is problematic? ``` CROW_ROUTE(app, "/crew") ([]{ crow::json::wvalue troi; troi["name"] = "Deanna...

Even with your constructor code and other examples, I still couldn't get this working. I resorted to using **nlohmann-json**: ``` CROW_ROUTE(app, "/crew") ([]{ nlohmann::json troi = { { "name", "Deanna...