aboutsummaryrefslogtreecommitdiffstats
path: root/components/msg/compositor_msg.rs
diff options
context:
space:
mode:
authorMs2ger <ms2ger@gmail.com>2015-03-27 17:31:57 +0100
committerMs2ger <ms2ger@gmail.com>2015-03-28 15:36:36 +0100
commitac3c076892898ad2cb3e8722d9697957f45b9143 (patch)
treeedf77f011b3926c55eec95c547114e76fb4ee405 /components/msg/compositor_msg.rs
parent43ed033effae75fa42d67526103dd9ed3cbe6985 (diff)
downloadservo-ac3c076892898ad2cb3e8722d9697957f45b9143.tar.gz
servo-ac3c076892898ad2cb3e8722d9697957f45b9143.zip
Use u32 for Epoch.
Diffstat (limited to 'components/msg/compositor_msg.rs')
-rw-r--r--components/msg/compositor_msg.rs2
1 files changed, 1 insertions, 1 deletions
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) {