From ac3c076892898ad2cb3e8722d9697957f45b9143 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 27 Mar 2015 17:31:57 +0100 Subject: [PATCH] Use u32 for Epoch. --- components/msg/compositor_msg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/msg/compositor_msg.rs b/components/msg/compositor_msg.rs index 54dc125f589..c51a0df6a0c 100644 --- a/components/msg/compositor_msg.rs +++ b/components/msg/compositor_msg.rs @@ -34,7 +34,7 @@ pub enum ReadyState { /// A newtype struct for denoting the age of messages; prevents race conditions. #[derive(PartialEq, Eq, Debug, Copy)] -pub struct Epoch(pub uint); +pub struct Epoch(pub u32); impl Epoch { pub fn next(&mut self) {