Skip to content

Commit

Permalink
Fix typecast
Browse files Browse the repository at this point in the history
  • Loading branch information
jurihock committed Dec 10, 2023
1 parent 73d88fe commit 2482837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StftPitchShiftPlugin/Core/InstantCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ InstantCore::~InstantCore()

int InstantCore::latency() const
{
return synthesis_window_size;
return static_cast<int>(synthesis_window_size);
}

bool InstantCore::compatible(const int blocksize) const
Expand Down

0 comments on commit 2482837

Please sign in to comment.