Skip to content

Commit

Permalink
Trying to fix MSVC warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Dec 14, 2023
1 parent 02a7c6c commit c86e6d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class FIRPolyphaseDecimator
{
buffers.emplace_back (numChannels, maxBlockSizeIn / decimationFactor);

auto& filter = filters.emplace_back (coeffsPerFilter);
auto& filter = filters.emplace_back ((int) coeffsPerFilter);
filter.prepare (numChannels);

std::fill (oneFilterCoeffs.begin(), oneFilterCoeffs.end(), T {});
Expand Down

0 comments on commit c86e6d3

Please sign in to comment.