aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/main/layout/flow.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2014-04-06 02:53:33 +0530
committerManish Goregaokar <manishsmail@gmail.com>2014-04-06 02:53:33 +0530
commit57f63b350e241fb65af2bc37004218db5f50713e (patch)
treeeba4e3f24ac41ce64bbc9386fec8dc3c7351b076 /src/components/main/layout/flow.rs
parent44e7e365c9a7a7c3acb70010e140f3f11b4f9def (diff)
downloadservo-57f63b350e241fb65af2bc37004218db5f50713e.tar.gz
servo-57f63b350e241fb65af2bc37004218db5f50713e.zip
fix visibility warnings in main crate (#2044)
Diffstat (limited to 'src/components/main/layout/flow.rs')
-rw-r--r--src/components/main/layout/flow.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/main/layout/flow.rs b/src/components/main/layout/flow.rs
index 2fd6b310d86..1e5ab33ab37 100644
--- a/src/components/main/layout/flow.rs
+++ b/src/components/main/layout/flow.rs
@@ -718,9 +718,9 @@ impl Descendants {
pub type AbsDescendants = Descendants;
-type DescendantIter<'a> = MutItems<'a, Rawlink>;
+pub type DescendantIter<'a> = MutItems<'a, Rawlink>;
-type DescendantOffsetIter<'a> = Zip<MutItems<'a, Rawlink>, MutItems<'a, Au>>;
+pub type DescendantOffsetIter<'a> = Zip<MutItems<'a, Rawlink>, MutItems<'a, Au>>;
/// Data common to all flows.
pub struct BaseFlow {