aboutsummaryrefslogtreecommitdiff
path: root/src/libstore
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2023-01-17 09:14:17 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2023-01-17 09:14:17 -0500
commit3965b0f75f22b472f505f10eaf1823fb779ae1cf (patch)
tree64eb5a654f97f413b4c65974e768ac2b974a1bca /src/libstore
parentdeb35c84b30b257fd9ffa4f4450d4d73a35bbdc9 (diff)
Try again to fix aarch64-linux build failure
f419ab48e6394838097f158265ac3cc531ee7958 was on the right track, but there are a few more missing `raw()` calls to fix.
Diffstat (limited to 'src/libstore')
-rw-r--r--src/libstore/outputs-spec.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/outputs-spec.cc b/src/libstore/outputs-spec.cc
index d0f39a854..a9e4320d5 100644
--- a/src/libstore/outputs-spec.cc
+++ b/src/libstore/outputs-spec.cc
@@ -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());
}
}