From 02483980a509a7dc009799e19be9249015e39192 Mon Sep 17 00:00:00 2001 From: oparviai Date: Mon, 13 Apr 2009 13:18:48 +0000 Subject: [PATCH] Added virtual destructor to FIFOSamplePipe base class --- include/FIFOSamplePipe.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/FIFOSamplePipe.h b/include/FIFOSamplePipe.h index 417d1a3..ad982cb 100644 --- a/include/FIFOSamplePipe.h +++ b/include/FIFOSamplePipe.h @@ -59,6 +59,10 @@ namespace soundtouch class FIFOSamplePipe { public: + // virtual default destructor + virtual ~FIFOSamplePipe() {} + + /// Returns a pointer to the beginning of the output samples. /// This function is provided for accessing the output samples directly. /// Please be careful for not to corrupt the book-keeping!