aboutsummaryrefslogtreecommitdiffstats
path: root/libs/fft.cpp
diff options
context:
space:
mode:
authormzed <github@mikezed.com>2017-11-20 12:28:25 +0000
committermzed <github@mikezed.com>2017-11-20 12:28:25 +0000
commitfec9e22f85cb2e9a60d007319fbc06190ed71e55 (patch)
tree271b922c9e512df62a34dc8d494665c6da7ad2ce /libs/fft.cpp
parent3a5431836b7c8ad98459f3d6ff50e5bac1d2c297 (diff)
fixing bad use of commas in destructors
Diffstat (limited to 'libs/fft.cpp')
-rw-r--r--libs/fft.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/libs/fft.cpp b/libs/fft.cpp
index 4332d88..abec54d 100644
--- a/libs/fft.cpp
+++ b/libs/fft.cpp
@@ -434,7 +434,10 @@ fft::fft(int fftSize) {
/* destructor */
fft::~fft() {
- delete[] in_real, out_real, in_img, out_img;
+ delete[] in_real;
+ delete[] out_real;
+ delete[] in_img;
+ delete[] out_img;
#ifdef __APPLE_CC__
vDSP_destroy_fftsetup(setupReal);
delete[] A.realp;