diff options
Diffstat (limited to 'core/ambdec.cpp')
-rw-r--r-- | core/ambdec.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/core/ambdec.cpp b/core/ambdec.cpp index fcaf0388..4e4c7e1e 100644 --- a/core/ambdec.cpp +++ b/core/ambdec.cpp @@ -153,16 +153,15 @@ al::optional<std::string> AmbDecConf::load(const char *fname) noexcept AmbDecConf::CoeffArray &mtxrow = matrix[pos++]; mtxrow.fill(0.0f); - std::size_t curidx{0u}; float value{}; while(mask) { - auto idx = al::countr_zero(mask); + auto idx = static_cast<unsigned>(al::countr_zero(mask)); mask &= ~(1u << idx); istr >> value; - if(curidx < mtxrow.size()) - mtxrow[curidx++] = value; + if(idx < mtxrow.size()) + mtxrow[idx] = value; } } else |