diff options
Diffstat (limited to 'core/bformatdec.cpp')
-rw-r--r-- | core/bformatdec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/bformatdec.cpp b/core/bformatdec.cpp index 606093c0..5c3f1864 100644 --- a/core/bformatdec.cpp +++ b/core/bformatdec.cpp @@ -115,7 +115,7 @@ void BFormatDec::processStablize(const al::span<FloatBufferLine> OutBuffer, auto &DelayBuf = mStablizer->DelayBuf[i]; auto buffer_end = OutBuffer[i].begin() + SamplesToDo; - if LIKELY(SamplesToDo >= FrontStablizer::DelayLength) + if(SamplesToDo >= FrontStablizer::DelayLength) [[allikely]] { auto delay_end = std::rotate(OutBuffer[i].begin(), buffer_end - FrontStablizer::DelayLength, buffer_end); |