| 202 | } |
| 203 | |
| 204 | void AudioParam::disconnectAll(ContextGraphLock & g, std::shared_ptr<AudioParam> param) |
| 205 | { |
| 206 | for (auto i : param->m_connectedOutputs) |
| 207 | { |
| 208 | auto j = i.lock(); |
| 209 | if (j) |
| 210 | j->removeParam(g, param); |
| 211 | } |
| 212 | param->junctionDisconnectAllOutputs(); |
| 213 | } |
nothing calls this directly
no test coverage detected