Don't mark a non-constexpr-able function as constexpr

It can't be constexpr because it needs write access to an std::array, and
because of std::sqrt.
master
Chris Robinson 2022-08-26 01:33:11 -07:00
parent 1a99ac48f6
commit 35d7fca52c
1 changed files with 1 additions and 1 deletions

View File

@ -573,7 +573,7 @@ struct RotatorCoeffs {
};
std::array<CoeffValues,CalcRotatorSize<MaxAmbiOrder>()> mCoeffs{};
constexpr RotatorCoeffs()
RotatorCoeffs()
{
auto coeffs = mCoeffs.begin();