Bug 1444200: Explicitly call the parent class default constructor from AutoTArray's copy constructor. r=froydnj

MozReview-Commit-ID: 5alSZfYJxmV
This commit is contained in:
Bas Schouten 2018-03-09 05:27:14 +01:00
Родитель 00635f3b26
Коммит 0d91fc49fd
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -2451,6 +2451,7 @@ public:
}
AutoTArray(const self_type& aOther)
: nsTArray<E>()
{
Init();
this->AppendElements(aOther);