From 82337dec44347017ca04fe975e85e6d9e4edb635 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 11 May 2014 16:59:19 +0200 Subject: InputStream: add virtual destructor Replaces the method Close(). --- src/input/plugins/AlsaInputPlugin.cxx | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/input/plugins/AlsaInputPlugin.cxx') diff --git a/src/input/plugins/AlsaInputPlugin.cxx b/src/input/plugins/AlsaInputPlugin.cxx index c1ff41d55..2049c5635 100644 --- a/src/input/plugins/AlsaInputPlugin.cxx +++ b/src/input/plugins/AlsaInputPlugin.cxx @@ -373,13 +373,6 @@ alsa_input_open(const char *uri, Mutex &mutex, Cond &cond, Error &error) return AlsaInputStream::Create(uri, mutex, cond, error); } -static void -alsa_input_close(InputStream *is) -{ - AlsaInputStream *ais = (AlsaInputStream *)is; - delete ais; -} - static bool alsa_input_available(InputStream *is) { @@ -406,7 +399,6 @@ const struct InputPlugin input_plugin_alsa = { nullptr, nullptr, alsa_input_open, - alsa_input_close, nullptr, nullptr, nullptr, -- cgit v1.2.3