diff options
Diffstat (limited to 'xpcom/ds/nsTArray.h')
-rw-r--r-- | xpcom/ds/nsTArray.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/xpcom/ds/nsTArray.h b/xpcom/ds/nsTArray.h index 56f926ccad..c088f1c4bd 100644 --- a/xpcom/ds/nsTArray.h +++ b/xpcom/ds/nsTArray.h @@ -369,13 +369,6 @@ struct nsTArray_SafeElementAtHelper<mozilla::OwningNonNull<E>, Derived> : public nsTArray_SafeElementAtSmartPtrHelper<mozilla::OwningNonNull<E>, Derived> {}; -// Servo bindings. -extern "C" void Gecko_EnsureTArrayCapacity(void* aArray, size_t aCapacity, - size_t aElementSize); -extern "C" void Gecko_ClearPODTArray(void* aArray, size_t aElementSize, - size_t aElementAlign); - -// // This class serves as a base class for nsTArray. It shouldn't be used // directly. It holds common implementation code that does not depend on the // element type of the nsTArray. @@ -393,11 +386,6 @@ class nsTArray_base { template <class E, class XAlloc> friend class nsTArray_Impl; - friend void Gecko_EnsureTArrayCapacity(void* aArray, size_t aCapacity, - size_t aElemSize); - friend void Gecko_ClearPODTArray(void* aTArray, size_t aElementSize, - size_t aElementAlign); - protected: typedef nsTArrayHeader Header; |