зеркало из https://github.com/mozilla/gecko-dev.git
Bug 885002 - Fix casting on 64 bit Big Endian platforms. r=cpearce
This commit is contained in:
Родитель
7c590bb650
Коммит
3644edc85d
|
@ -143,9 +143,7 @@ public:
|
|||
private:
|
||||
int32_t ObjectAt(int32_t aIndex) {
|
||||
void* v = nsDeque::ObjectAt(aIndex);
|
||||
// Ugly hack to work around "casting 64bit void* to 32bit int loses precision"
|
||||
// error on 64bit Linux.
|
||||
return *(reinterpret_cast<int32_t*>(&v));
|
||||
return reinterpret_cast<uintptr_t>(v);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче