Bug 1533777 - use a release assert in CheckedInt::value; r=froydnj

Differential Revision: https://phabricator.services.mozilla.com/D22970

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Alex Gaynor 2019-03-11 13:55:28 +00:00
Родитель 31602d2640
Коммит ca0c1fc191
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -532,7 +532,7 @@ class CheckedInt {
/** @returns the actual value */
T value() const {
MOZ_ASSERT(
MOZ_RELEASE_ASSERT(
mIsValid,
"Invalid checked integer (division by zero or integer overflow)");
return mValue;