Fix tokio-timer on 32bit systems (#274)

This commit is contained in:
Daniel Griffen
2018-04-02 08:53:43 -07:00
committed by Carl Lerche
parent 8895a7d3ab
commit 3f2710397d
+2 -1
View File
@@ -44,7 +44,8 @@ mod imp {
#[cfg(not(target_pointer_width = "64"))]
mod imp {
use std::sync::Mutex;
use std::sync::atomic::Ordering;
#[derive(Debug)]
pub struct AtomicU64 {
inner: Mutex<u64>,