Bug 1412346 part 3: Move a misplaced "IWYU pragma" comment down a few lines to match our convention and so mode line can be first. r?jfkthame draft
authorDaniel Holbert <dholbert@cs.stanford.edu>
Fri, 27 Oct 2017 10:08:27 -0700
changeset 687738 f77063139fea0e5d8a6ad80afd4c62c01ba2cd75
parent 687737 4873794d88caceae6348c29ab6c117558259f471
child 687739 8f534df4f26010e8adaef8a88f1f86a7cd2835ae
push id86585
push userdholbert@mozilla.com
push dateFri, 27 Oct 2017 17:17:15 +0000
reviewersjfkthame
bugs1412346
milestone58.0a1
Bug 1412346 part 3: Move a misplaced "IWYU pragma" comment down a few lines to match our convention and so mode line can be first. r?jfkthame MozReview-Commit-ID: IEp7T0D1VUh
layout/painting/nsDisplayItemTypes.h
--- a/layout/painting/nsDisplayItemTypes.h
+++ b/layout/painting/nsDisplayItemTypes.h
@@ -1,15 +1,15 @@
-// IWYU pragma: private, include "nsDisplayList.h"
 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  * vim: set ts=2 sw=2 et tw=78:
  * This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this
  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  */
+// IWYU pragma: private, include "nsDisplayList.h"
 
 /**
  * It's useful to be able to dynamically check the type of certain items.
  * Every subclass of nsDisplayItem must have a new type added here for the purposes
  * of easy comparison and matching of items in different display lists.
  */
 
 #ifndef NSDISPLAYITEMTYPES_H_