From 131270c1d3efbb1a7904d915605561eb9817c7ab Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 27 Mar 2015 20:06:59 +0100 Subject: [PATCH] Use u32 for PipelineId. --- 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 696dfb2e397..d19d93d0a99 100644 --- a/components/msg/constellation_msg.rs +++ b/components/msg/constellation_msg.rs @@ -315,7 +315,7 @@ pub struct FrameId(pub u32); pub struct WorkerId(pub u32); #[derive(Clone, PartialEq, Eq, Copy, Hash, Debug)] -pub struct PipelineId(pub uint); +pub struct PipelineId(pub u32); #[derive(Clone, PartialEq, Eq, Copy, Hash, Debug)] pub struct SubpageId(pub uint);