diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-04-02 14:47:48 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-04-02 14:47:48 +0200 |
commit | 67b3a3d3d661b43939b8257dbeb1dbd123cb2d2c (patch) | |
tree | b23a1a050393a4210e1f5db30c6a6fd02e55c46a /components/layout/table.rs | |
parent | 3dd3ad728e56d5eb9ce222778be26c488ee7f493 (diff) | |
download | servo-67b3a3d3d661b43939b8257dbeb1dbd123cb2d2c.tar.gz servo-67b3a3d3d661b43939b8257dbeb1dbd123cb2d2c.zip |
Use usize for propagate_to_child.
Diffstat (limited to 'components/layout/table.rs')
-rw-r--r-- | components/layout/table.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/layout/table.rs b/components/layout/table.rs index 85bab65e036..f10e448ffd6 100644 --- a/components/layout/table.rs +++ b/components/layout/table.rs @@ -595,7 +595,7 @@ impl<'a> ChildInlineSizeInfo<'a> { /// lays out that child in the inline direction. pub fn propagate_to_child(&self, kid: &mut Flow, - child_index: uint, + child_index: usize, content_inline_size: Au, writing_mode: WritingMode, inline_start_margin_edge: &mut Au) { |