Bug 1256488 - Add explicit casts to fix MSVC warning C4365. r=fitzgen

MozReview-Commit-ID: HuVL7COgcX7

--HG--
extra : rebase_source : 0d087f0ab115a701c3562d33082c9319d72d65bf
This commit is contained in:
Kit Cambridge 2016-04-18 17:29:43 -07:00
Родитель da3a863a84
Коммит 033ba99b0d
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -556,7 +556,7 @@ JSVAL_IS_BOOLEAN_IMPL(jsval_layout l)
static inline bool
JSVAL_TO_BOOLEAN_IMPL(jsval_layout l)
{
return l.s.payload.boo;
return bool(l.s.payload.boo);
}
static inline jsval_layout
@ -564,7 +564,7 @@ BOOLEAN_TO_JSVAL_IMPL(bool b)
{
jsval_layout l;
l.s.tag = JSVAL_TAG_BOOLEAN;
l.s.payload.boo = b;
l.s.payload.boo = uint32_t(b);
return l;
}