From 90b2e823e468dbc287ca89f854950762eb92d09e Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Tue, 13 Nov 2018 08:39:29 -0500 Subject: [PATCH] lib-src/libscorealign: fix warning about vacuous self-assignment --- lib-src/libscorealign/audioreader.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib-src/libscorealign/audioreader.cpp b/lib-src/libscorealign/audioreader.cpp index 2009c00b8..c4f63a41c 100644 --- a/lib-src/libscorealign/audioreader.cpp +++ b/lib-src/libscorealign/audioreader.cpp @@ -90,7 +90,6 @@ void Audio_reader::calculate_parameters(Scorealign &sa, bool verbose) // this is stored back in a field in sa as well as here in the reader frame_count= (int) ceil(((float) pcm_frames / hop_samples + 1)); - this->frame_count = frame_count; temp_data = ALLOC(float, samples_per_frame); memset(temp_data, 0, samples_per_frame * sizeof(temp_data[0])); assert(temp_data);