From b23e4b2d7b452bb13904c5664f7a4316bf011ab2 Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Wed, 9 Dec 2015 15:51:31 -0800 Subject: [PATCH] Bug 1231256 (part 12) - Remove TraceableVectorOperations::canAppendWithoutRealloc. r=terrence. It's unused. --HG-- extra : rebase_source : ed5bda7e86e8f39ce3ac220f7cfe5d02cf4897a9 --- js/public/TraceableVector.h | 1 - 1 file changed, 1 deletion(-) diff --git a/js/public/TraceableVector.h b/js/public/TraceableVector.h index 79bade658e8c..6601b485214d 100644 --- a/js/public/TraceableVector.h +++ b/js/public/TraceableVector.h @@ -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 operator[](size_t aIndex) const { return JS::Handle::fromMarkedLocation(&vec().operator[](aIndex));