mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Add warning comments to Node::connect and Node::disconnect
This commit is contained in:
parent
fd64753c93
commit
e2c540d7f9
@ -74,6 +74,8 @@ private:
|
||||
std::list<Element*> connections;
|
||||
};
|
||||
|
||||
// Calling this while iterating over the node's connections via Node::begin() and
|
||||
// Node::end() will cause segfault because of iterator invalidation
|
||||
inline void Node::connect(Element* connectable)
|
||||
{
|
||||
if (is_connected(connectable)) {
|
||||
@ -82,6 +84,8 @@ inline void Node::connect(Element* connectable)
|
||||
connections.push_front(connectable);
|
||||
}
|
||||
|
||||
// Calling this while iterating over the node's connections via Node::begin() and
|
||||
// Node::end() will cause segfault because of iterator invalidation
|
||||
inline void Node::disconnect(Element* connectable)
|
||||
{
|
||||
connections.remove(connectable);
|
||||
|
Loading…
x
Reference in New Issue
Block a user