| 365 | } |
| 366 | |
| 367 | void AudioNode::addOutput(ContextGraphLock&, std::unique_ptr<AudioNodeOutput> output) |
| 368 | { |
| 369 | m_outputs.emplace_back(std::move(output)); |
| 370 | } |
| 371 | |
| 372 | void AudioNode::addInput(std::unique_ptr<AudioNodeInput> input) |
| 373 | { |
nothing calls this directly
no outgoing calls
no test coverage detected