Skip to content

Commit

Permalink
Fix handling array types
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-tan committed Mar 29, 2024
1 parent ce8a322 commit b8a639f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/shaft/staging.d
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ in(dest.isDir)
assert(node.type == NodeType.sequence);

auto staged = zip(StoppingPolicy.requireSameLength, at.types, node.sequence).map!((tpl) {
return stagingParam(TypedValue(tpl[1], *tpl[0]), dest, keepStructure);
return stagingParam(TypedValue(tpl[1], *tpl[0]), dest, keepStructure, forceStaging, overwrite);
}).array;
return Node(staged);
},
Expand Down

0 comments on commit b8a639f

Please sign in to comment.