Bug 1524755 - Use ptrdiff_t instead in RangedPtr. r=jwalden

This commit is contained in:
Tooru Fujisawa 2019-02-08 12:13:23 +09:00
Родитель 2e3f7b4395
Коммит 72222a022c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -211,7 +211,7 @@ class RangedPtr {
return *this;
}
T& operator[](int aIndex) const {
T& operator[](ptrdiff_t aIndex) const {
MOZ_ASSERT(size_t(aIndex > 0 ? aIndex : -aIndex) <= size_t(-1) / sizeof(T));
return *create(mPtr + aIndex);
}