From 5598b4f386312ab35e5ba60a84d722d560e932f3 Mon Sep 17 00:00:00 2001 From: Eric Lavesson Date: Mon, 28 Sep 2015 22:21:21 +0200 Subject: [PATCH] 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. --- cAudio/include/IAudioDeviceList.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/cAudio/include/IAudioDeviceList.h b/cAudio/include/IAudioDeviceList.h index b3ae9e6..253af72 100644 --- a/cAudio/include/IAudioDeviceList.h +++ b/cAudio/include/IAudioDeviceList.h @@ -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;