| 7590 | #if defined(__RTAUDIO_DEBUG__) |
| 7591 | struct SndOutputTdealloc { |
| 7592 | SndOutputTdealloc() : _out(NULL) { snd_output_stdio_attach(&_out, stderr, 0); } |
| 7593 | ~SndOutputTdealloc() { snd_output_close(_out); } |
| 7594 | operator snd_output_t*() { return _out; } |
| 7595 | snd_output_t *_out; |
nothing calls this directly
no outgoing calls
no test coverage detected