| 8280 | #if defined(__RTAUDIO_DEBUG__) |
| 8281 | struct SndOutputTdealloc { |
| 8282 | SndOutputTdealloc() : _out(NULL) { snd_output_stdio_attach(&_out, stderr, 0); } |
| 8283 | ~SndOutputTdealloc() { snd_output_close(_out); } |
| 8284 | operator snd_output_t*() { return _out; } |
| 8285 | snd_output_t *_out; |
nothing calls this directly
no outgoing calls
no test coverage detected