From bec907bead3e9ba31b830b643d5dbdf651202264 Mon Sep 17 00:00:00 2001 From: John Glover Date: Wed, 3 Oct 2012 12:28:56 +0200 Subject: [base] Bug fix: don't assign peak and partial pointer arrays to NULL when clear_peaks and clear_partials methods are called as the generated Cython code won't compile. Just set the num_peaks and num_partials values to 0. --- src/simpl/base.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp index 75e0697..ea57c59 100644 --- a/src/simpl/base.cpp +++ b/src/simpl/base.cpp @@ -98,12 +98,10 @@ void Frame::clear() { } void Frame::clear_peaks() { - _peaks.assign(_max_peaks, NULL); _num_peaks = 0; } void Frame::clear_partials() { - _partials.assign(_max_peaks, NULL); _num_partials = 0; } -- cgit v1.2.3