Use usize for UnsafeFlow.

This commit is contained in:
Ms2ger 2015-03-29 12:51:27 +02:00
parent 95004ee4b6
commit 865d4b4eb4

View file

@ -35,7 +35,7 @@ fn static_assertion(node: UnsafeLayoutNode) {
} }
/// Vtable + pointer representation of a Flow trait object. /// Vtable + pointer representation of a Flow trait object.
pub type UnsafeFlow = (uint, uint); pub type UnsafeFlow = (usize, usize);
fn null_unsafe_flow() -> UnsafeFlow { fn null_unsafe_flow() -> UnsafeFlow {
(0, 0) (0, 0)