Bug 1329334 - Variant::as<> should use MOZ_RELEASE_ASSERT. r=froydnj

MozReview-Commit-ID: E95959RYm2r

--HG--
extra : rebase_source : 774fcf05c3e6baf080a0e74358e7441242465bb4
This commit is contained in:
James Cheng 2017-01-10 14:24:49 +08:00
Родитель 269e3163e5
Коммит 642927f52b
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -575,7 +575,7 @@ public:
T& as() {
static_assert(detail::IsVariant<T, Ts...>::value,
"provided a type not found in this Variant's type list");
MOZ_ASSERT(is<T>());
MOZ_RELEASE_ASSERT(is<T>());
return *reinterpret_cast<T*>(&raw);
}
@ -584,7 +584,7 @@ public:
const T& as() const {
static_assert(detail::IsVariant<T, Ts...>::value,
"provided a type not found in this Variant's type list");
MOZ_ASSERT(is<T>());
MOZ_RELEASE_ASSERT(is<T>());
return *reinterpret_cast<const T*>(&raw);
}