Bug 1231256 (part 12) - Remove TraceableVectorOperations::canAppendWithoutRealloc. r=terrence.

It's unused.

--HG--
extra : rebase_source : ed5bda7e86e8f39ce3ac220f7cfe5d02cf4897a9
This commit is contained in:
Nicholas Nethercote 2015-12-09 15:51:31 -08:00
Родитель 59dfcb9a66
Коммит b23e4b2d7b
1 изменённых файлов: 0 добавлений и 1 удалений

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

@ -140,7 +140,6 @@ class TraceableVectorOperations
const T* begin() const { return vec().begin(); }
const T* end() const { return vec().end(); }
const T& back() const { return vec().back(); }
bool canAppendWithoutRealloc(size_t aNeeded) const { return vec().canAppendWithoutRealloc(); }
JS::Handle<T> operator[](size_t aIndex) const {
return JS::Handle<T>::fromMarkedLocation(&vec().operator[](aIndex));