diff options
author | John Glover <j@johnglover.net> | 2012-10-03 12:28:56 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-10-03 12:28:56 +0200 |
commit | bec907bead3e9ba31b830b643d5dbdf651202264 (patch) | |
tree | f25dee44c2c8bc0cb9fa4cceb2703557a14f81ff /src | |
parent | 210043cd1e019833539e657888fb4291295de0fe (diff) | |
download | simpl-bec907bead3e9ba31b830b643d5dbdf651202264.tar.gz simpl-bec907bead3e9ba31b830b643d5dbdf651202264.tar.bz2 simpl-bec907bead3e9ba31b830b643d5dbdf651202264.zip |
[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.
Diffstat (limited to 'src')
-rw-r--r-- | src/simpl/base.cpp | 2 |
1 files changed, 0 insertions, 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; } |