From ab9ae9facfc5740a6a7d87302cacc92c2fff1dc8 Mon Sep 17 00:00:00 2001 From: Sebastian Hengst Date: Fri, 30 Jun 2017 02:52:55 +0200 Subject: [PATCH] Backed out changeset 39f4723df4a3 (bug 1372061) for build bustage: ChildIterator.h:43:7: field 'mIndexInInserted' will be initialized after field 'mIsFirst'. r=backout --- dom/base/ChildIterator.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dom/base/ChildIterator.h b/dom/base/ChildIterator.h index fd91ceeb642d..7c46caae4d5e 100644 --- a/dom/base/ChildIterator.h +++ b/dom/base/ChildIterator.h @@ -119,14 +119,14 @@ protected: // iterating. nsAutoPtr 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