Fix compilation for compile benchmarks

This commit is contained in:
Dennis Kobert
2025-09-18 12:08:31 +02:00
parent 7d3efffdac
commit e176a0b812
8 changed files with 17 additions and 15 deletions

View File

@@ -377,7 +377,7 @@ impl NodeRuntime {
assert_eq!(scoped_network.exports.len(), 1, "Graph with multiple outputs not yet handled");
let c = Compiler {};
let proto_network = match c.compile_single(scoped_network, self.executor.typing_context_mut()) {
let proto_network = match c.compile_single(scoped_network, Some(self.executor.typing_context_mut())) {
Ok(network) => network,
Err(e) => return Err((ResolvedDocumentNodeTypesDelta::default(), e)),
};