From c98d92df003578f3754f3b8d64e73862a404ef99 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Sat, 28 Mar 2015 15:55:01 +0100 Subject: [PATCH] Use u32 for WorkerId. --- components/msg/constellation_msg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/msg/constellation_msg.rs b/components/msg/constellation_msg.rs index 9eb2a0066b8..696dfb2e397 100644 --- a/components/msg/constellation_msg.rs +++ b/components/msg/constellation_msg.rs @@ -312,7 +312,7 @@ pub enum NavigationDirection { pub struct FrameId(pub u32); #[derive(Clone, PartialEq, Eq, Copy, Hash, Debug)] -pub struct WorkerId(pub uint); +pub struct WorkerId(pub u32); #[derive(Clone, PartialEq, Eq, Copy, Hash, Debug)] pub struct PipelineId(pub uint);