From fec9e22f85cb2e9a60d007319fbc06190ed71e55 Mon Sep 17 00:00:00 2001 From: mzed Date: Mon, 20 Nov 2017 12:28:25 +0000 Subject: fixing bad use of commas in destructors --- libs/fft.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libs/fft.cpp') 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; -- cgit v1.3