comparison vamp-json/VampJson.h @ 233:82f86151bc4b

The compiler in the Travis environment seems to have trouble with this initialiser, change it
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 13 Jun 2017 09:45:41 +0100
parents d96981c06e62
children 292ec9b50280
comparison
equal deleted inserted replaced
232:09b7eab40dbf 233:82f86151bc4b
262 toStaticOutputDescriptor(json11::Json j, std::string &err) { 262 toStaticOutputDescriptor(json11::Json j, std::string &err) {
263 263
264 StaticOutputDescriptor sd; 264 StaticOutputDescriptor sd;
265 if (!j.is_object()) { 265 if (!j.is_object()) {
266 err = "object expected for static output descriptor"; 266 err = "object expected for static output descriptor";
267 return {}; 267 return sd;
268 } 268 }
269 269
270 sd.typeURI = j["typeURI"].string_value(); 270 sd.typeURI = j["typeURI"].string_value();
271 return sd; 271 return sd;
272 } 272 }