From 865d4b4eb42915ec8974fc49f1a78fc747077997 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Sun, 29 Mar 2015 12:51:27 +0200 Subject: [PATCH] Use usize for UnsafeFlow. --- components/layout/parallel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/layout/parallel.rs b/components/layout/parallel.rs index ee076763c24..57b74ac66e4 100644 --- a/components/layout/parallel.rs +++ b/components/layout/parallel.rs @@ -35,7 +35,7 @@ fn static_assertion(node: UnsafeLayoutNode) { } /// Vtable + pointer representation of a Flow trait object. -pub type UnsafeFlow = (uint, uint); +pub type UnsafeFlow = (usize, usize); fn null_unsafe_flow() -> UnsafeFlow { (0, 0)