Bug 939206 - Fix nsTArray post barriers for JS::Heap<T> elements r=bsmedberg

This commit is contained in:
Jon Coppeard 2013-12-07 12:50:28 +00:00
parent 5bba15e3e0
commit 1001d2a7ba

View File

@ -665,7 +665,7 @@ struct nsTArray_CopyChooser {
//
template <class E>
struct nsTArray_CopyChooser<JS::Heap<E> > {
typedef nsTArray_CopyWithConstructors<E> Type;
typedef nsTArray_CopyWithConstructors<JS::Heap<E> > Type;
};
template<>