Remove a duplicated virtual destructor

Seems like this issue was fixed independently by commits
22ff1a97 and 36943a18, and both ended up getting merged,
giving us a redeclaration of the virtual destructor.
This commit is contained in:
Eric Lavesson 2015-09-28 22:21:21 +02:00
parent 81bf1182ca
commit 5598b4f386
1 changed files with 0 additions and 2 deletions

View File

@ -17,8 +17,6 @@ namespace cAudio
class IAudioDeviceList
{
public:
virtual ~IAudioDeviceList() {};
virtual unsigned int getDeviceCount() = 0;
virtual cAudioString getDeviceName(unsigned int idx) = 0;
virtual cAudioString getDeviceDescription(unsigned int idx) = 0;