зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1304310 - Remove else after return statement in ConvertScalar. r=arai
--HG-- extra : rebase_source : 0d00b356dd2a57b45a8c94ed618127dd02df768e
This commit is contained in:
Родитель
2e88ad8701
Коммит
82f42fed53
|
@ -103,15 +103,14 @@ namespace js {
|
|||
template <typename T>
|
||||
static T ConvertScalar(double d)
|
||||
{
|
||||
if (TypeIsFloatingPoint<T>()) {
|
||||
if (TypeIsFloatingPoint<T>())
|
||||
return T(d);
|
||||
} else if (TypeIsUnsigned<T>()) {
|
||||
if (TypeIsUnsigned<T>()) {
|
||||
uint32_t n = JS::ToUint32(d);
|
||||
return T(n);
|
||||
} else {
|
||||
int32_t n = JS::ToInt32(d);
|
||||
return T(n);
|
||||
}
|
||||
int32_t n = JS::ToInt32(d);
|
||||
return T(n);
|
||||
}
|
||||
|
||||
namespace type {
|
||||
|
|
Загрузка…
Ссылка в новой задаче