зеркало из https://github.com/mozilla/pjs.git
Bug 519326 - Variant.h(152) : warning C4244: '=' : conversion from 'PRInt64' to 'PRInt32', possible loss of data. r=sdwilsh
This commit is contained in:
Родитель
664d86a3a0
Коммит
4005693558
|
@ -149,7 +149,7 @@ struct variant_integer_traits<PRInt64>
|
|||
if (aValue > PR_INT32_MAX || aValue < PR_INT32_MIN)
|
||||
return NS_ERROR_CANNOT_CONVERT_DATA;
|
||||
|
||||
*_result = aValue;
|
||||
*_result = static_cast<PRInt32>(aValue);
|
||||
return NS_OK;
|
||||
}
|
||||
static inline nsresult asInt64(PRInt64 aValue,
|
||||
|
|
Загрузка…
Ссылка в новой задаче