Fix fanout naming for debug graph
🧪 Test / test (push) Failing after 2m38s

This commit is contained in:
2026-05-09 09:54:40 +02:00
parent da8f4d9926
commit 9acc42b2e9
3 changed files with 35 additions and 8 deletions
+2 -2
View File
@@ -101,9 +101,9 @@ public:
}
template<std::size_t I>
InputPort<MainThreadNode, I> input() {
InputPort<Derived, I> input() {
static_assert(I < input_count, "input index out of range");
return {*this};
return {static_cast<Derived&>(*this)};
}
template<fixed_string Name>