Backed out changeset 39f4723df4a3 (bug 1372061) for build bustage: ChildIterator.h:43:7: field 'mIndexInInserted' will be initialized after field 'mIsFirst'. r=backout

This commit is contained in:
Sebastian Hengst 2017-06-30 02:52:55 +02:00
Родитель ad503dd5d3
Коммит ab9ae9facf
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -119,14 +119,14 @@ protected:
// iterating.
nsAutoPtr<ExplicitChildIterator> mShadowIterator;
// A flag to let us know that we haven't started iterating yet.
bool mIsFirst;
// If not zero, we're iterating inserted children for an insertion point. This
// is an index into mChild's inserted children array (mChild must be an
// nsXBLChildrenElement). The index is one past the "current" child (as
// opposed to mChild which represents the "current" child).
uint32_t mIndexInInserted;
// A flag to let us know that we haven't started iterating yet.
bool mIsFirst;
};
// Iterates over the flattened children of a node, which accounts for anonymous