From 67b3a3d3d661b43939b8257dbeb1dbd123cb2d2c Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Thu, 2 Apr 2015 14:47:48 +0200 Subject: [PATCH] Use usize for propagate_to_child. --- components/layout/table.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {