diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2014-04-06 02:53:33 +0530 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2014-04-06 02:53:33 +0530 |
commit | 57f63b350e241fb65af2bc37004218db5f50713e (patch) | |
tree | eba4e3f24ac41ce64bbc9386fec8dc3c7351b076 /src/components/main/layout/inline.rs | |
parent | 44e7e365c9a7a7c3acb70010e140f3f11b4f9def (diff) | |
download | servo-57f63b350e241fb65af2bc37004218db5f50713e.tar.gz servo-57f63b350e241fb65af2bc37004218db5f50713e.zip |
fix visibility warnings in main crate (#2044)
Diffstat (limited to 'src/components/main/layout/inline.rs')
-rw-r--r-- | src/components/main/layout/inline.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/main/layout/inline.rs b/src/components/main/layout/inline.rs index 940d2b50d95..a504031b69b 100644 --- a/src/components/main/layout/inline.rs +++ b/src/components/main/layout/inline.rs @@ -50,7 +50,7 @@ use style::computed_values::{text_align, vertical_align, white_space}; /// with a float or a horizontal wall of the containing block. The top /// left corner of the green zone is the same as that of the line, but /// the green zone can be taller and wider than the line itself. -struct LineBox { +pub struct LineBox { range: Range, bounds: Rect<Au>, green_zone: Size2D<Au> |