# HG changeset patch
# User Chris Cannam <cannam@all-day-breakfast.com>
# Date 1497343541 -3600
# Node ID 82f86151bc4b23c5a85273c1bfe0642508fe2017
# Parent  09b7eab40dbfadd7e5158a12a5c07956b00e65c8
The compiler in the Travis environment seems to have trouble with this
initialiser, change it

diff -r 09b7eab40dbf -r 82f86151bc4b vamp-json/VampJson.h
--- a/vamp-json/VampJson.h	Tue Jun 13 08:44:07 2017 +0100
+++ b/vamp-json/VampJson.h	Tue Jun 13 09:45:41 2017 +0100
@@ -264,7 +264,7 @@
         StaticOutputDescriptor sd;
         if (!j.is_object()) {
             err = "object expected for static output descriptor";
-            return {};
+            return sd;
         }
 
         sd.typeURI = j["typeURI"].string_value();