Apply suggestions from @Tapanito code review

Co-authored-by: Vito Tumas <5780819+Tapanito@users.noreply.github.com>
This commit is contained in:
Ed Hennis
2026-05-20 18:46:17 -04:00
committed by GitHub
parent 8b56749ca3
commit aea19df3c1

View File

@@ -123,7 +123,7 @@ private:
default:
// If called in a constexpr context, this throw assures that the build fails if an
// invalid scale is used.
throw std::runtime_error("Unknown mantissa scale");
throw std::runtime_error("Unknown mantissa scale"); //LCOV_EXCL_LINE
}
}
@@ -140,7 +140,7 @@ private:
default:
// If called in a constexpr context, this throw assures that the build fails if an
// invalid scale is used.
throw std::runtime_error("Unknown mantissa scale");
throw std::runtime_error("Unknown mantissa scale"); //LCOV_EXCL_LINE
}
}