Skip to content

Commit

Permalink
Fix missing return (#2507)
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc authored Sep 18, 2023
1 parent 5e5e254 commit f74ec59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neuron/container/node.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ struct handle_interface: handle_base<Identifier> {
<< " v=" << handle.v() << " area=" << handle.area() << " a=" << handle.a()
<< " b=" << handle.b() << " d=" << handle.d() << '}';
} else {
os << "Node{null}";
return os << "Node{null}";
}
}
};
Expand Down

0 comments on commit f74ec59

Please sign in to comment.