Bug 885002 - Fix casting on 64 bit Big Endian platforms. r=cpearce

This commit is contained in:
Steve Singer 2013-11-05 07:45:00 -05:00
Родитель 7c590bb650
Коммит 3644edc85d
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -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);
}
};