зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1524755 - Use ptrdiff_t instead in RangedPtr. r=jwalden
This commit is contained in:
Родитель
2e3f7b4395
Коммит
72222a022c
|
@ -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);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче