Try again to fix aarch64-linux build failure

f419ab48e6 was on the right track, but
there are a few more missing `raw()` calls to fix.
This commit is contained in:
John Ericson 2023-01-17 09:14:17 -05:00
parent deb35c84b3
commit 3965b0f75f

View file

@ -163,7 +163,7 @@ void adl_serializer<OutputsSpec>::to_json(json & json, OutputsSpec t) {
[&](const OutputsSpec::Names & names) {
json = names;
},
}, t);
}, t.raw());
}
@ -183,7 +183,7 @@ void adl_serializer<ExtendedOutputsSpec>::to_json(json & json, ExtendedOutputsSp
[&](const ExtendedOutputsSpec::Explicit & e) {
adl_serializer<OutputsSpec>::to_json(json, e);
},
}, t);
}, t.raw());
}
}