| 57 | |
| 58 | |
| 59 | void |
| 60 | NodeState:: |
| 61 | setConnection(PortType portType, |
| 62 | PortIndex portIndex, |
| 63 | Connection& connection) |
| 64 | { |
| 65 | auto &connections = getEntries(portType); |
| 66 | |
| 67 | connections.at(portIndex).insert(std::make_pair(connection.id(), |
| 68 | &connection)); |
| 69 | } |
| 70 | |
| 71 | |
| 72 | void |
nothing calls this directly
no outgoing calls
no test coverage detected