pkgsrc/devel/xulrunner192/patches/patch-xpcom_glue_nsTPtrArray.h
joerg 05a9d221d7 Global variables of types without default constructors may not be
constant. Fix issues with template look up. Disable visibility for clang
as it checks the consistency of type declarations and the old Mozilla
code is way too heavy to patch for that.
2012-11-18 01:55:52 +00:00

13 lines
518 B
C

$NetBSD: patch-xpcom_glue_nsTPtrArray.h,v 1.1 2012/11/18 01:55:52 joerg Exp $
--- xpcom/glue/nsTPtrArray.h.orig 2012-11-17 16:59:07.000000000 +0000
+++ xpcom/glue/nsTPtrArray.h
@@ -64,7 +64,7 @@ class nsTPtrArray : public nsTArray<E*>
// Initialize this array and pre-allocate some number of elements.
explicit nsTPtrArray(size_type capacity) {
- SetCapacity(capacity);
+ this->SetCapacity(capacity);
}
// The array's copy-constructor performs a 'deep' copy of the given array.