diff options
author | Max Kellermann <max@duempel.org> | 2015-01-03 20:00:16 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-01-03 20:00:16 +0100 |
commit | afd31677dda7c36d4624634c4fc4465d4868c5c2 (patch) | |
tree | e8bd2ce3da8c27c685a921ec5f232d626e1bdbe7 /src/output | |
parent | b28710b08c80f7797e89e830d65a8a4d38d040b3 (diff) | |
download | mpd-afd31677dda7c36d4624634c4fc4465d4868c5c2.tar.gz mpd-afd31677dda7c36d4624634c4fc4465d4868c5c2.tar.xz mpd-afd31677dda7c36d4624634c4fc4465d4868c5c2.zip |
output/openal: convert struct to class
Diffstat (limited to '')
-rw-r--r-- | src/output/plugins/OpenALOutputPlugin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/plugins/OpenALOutputPlugin.cxx b/src/output/plugins/OpenALOutputPlugin.cxx index 22775822d..6ed3682b9 100644 --- a/src/output/plugins/OpenALOutputPlugin.cxx +++ b/src/output/plugins/OpenALOutputPlugin.cxx @@ -37,7 +37,7 @@ /* should be enough for buffer size = 2048 */ #define NUM_BUFFERS 16 -struct OpenALOutput { +class OpenALOutput { friend struct AudioOutputWrapper<OpenALOutput>; AudioOutput base; |