| 62 | struct SampledAudioNode::Internals |
| 63 | { |
| 64 | explicit Internals(AudioContext& ac_) |
| 65 | : greatest_cursor(-1) |
| 66 | , ac(ac_.audioContextInterface()) |
| 67 | { |
| 68 | } |
| 69 | ~Internals() = default; |
| 70 | moodycamel::ConcurrentQueue<Scheduled> incoming; |
| 71 | std::vector<Scheduled> scheduled; |
nothing calls this directly
no test coverage detected