Skip to content

Commit 2a69ba1

Browse files
committed
Fixed a linker error (MSVC2010) caused by undefined IMixPlugin destructor.
-- Pavel Koshevoy
1 parent 9106258 commit 2a69ba1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libmodplug/sndfile.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ typedef struct _MODCOMMAND
459459
class MODPLUG_EXPORT IMixPlugin
460460
{
461461
public:
462-
virtual ~IMixPlugin();
462+
virtual ~IMixPlugin() {};
463463
virtual int AddRef() = 0;
464464
virtual int Release() = 0;
465465
virtual void SaveAllParameters() = 0;

0 commit comments

Comments
 (0)