aboutsummaryrefslogtreecommitdiffstats
path: root/src/win32/mod.rs
diff options
context:
space:
mode:
authortomaka <pierre.krieger1708@gmail.com>2015-01-05 15:12:28 +0100
committertomaka <pierre.krieger1708@gmail.com>2015-01-05 15:12:28 +0100
commit25b261975c6756a3e0f9ee36107f185103b35292 (patch)
treeeb3c92dac3696742341c97bcd1d3ca2ce1fe42a1 /src/win32/mod.rs
parentbfd21793a8cc8c04b9f4ad294e11f7e6aa435bd7 (diff)
parent885d5e9c386df2a4057a34871f8095260c33c493 (diff)
downloadglutin-25b261975c6756a3e0f9ee36107f185103b35292.tar.gz
glutin-25b261975c6756a3e0f9ee36107f185103b35292.zip
Merge pull request #186 from tomaka/update-rustc
Update for Rustc
Diffstat (limited to 'src/win32/mod.rs')
-rw-r--r--src/win32/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/win32/mod.rs b/src/win32/mod.rs
index 78e2265..9c78a8a 100644
--- a/src/win32/mod.rs
+++ b/src/win32/mod.rs
@@ -102,7 +102,7 @@ impl WindowProxy {
impl Window {
/// See the docs in the crate root file.
pub fn is_closed(&self) -> bool {
- use std::sync::atomic::Relaxed;
+ use std::sync::atomic::Ordering::Relaxed;
self.is_closed.load(Relaxed)
}
@@ -213,7 +213,7 @@ impl Window {
// if one of the received events is `Closed`, setting `is_closed` to true
if events.iter().any(|e| match e { &::events::Event::Closed => true, _ => false }) {
- use std::sync::atomic::Relaxed;
+ use std::sync::atomic::Ordering::Relaxed;
self.is_closed.store(true, Relaxed);
}
@@ -228,7 +228,7 @@ impl Window {
// if the received event is `Closed`, setting `is_closed` to true
match ev {
::events::Event::Closed => {
- use std::sync::atomic::Relaxed;
+ use std::sync::atomic::Ordering::Relaxed;
self.is_closed.store(true, Relaxed);
},
_ => ()
@@ -241,7 +241,7 @@ impl Window {
},
Err(_) => {
- use std::sync::atomic::Relaxed;
+ use std::sync::atomic::Ordering::Relaxed;
self.is_closed.store(true, Relaxed);
RingBuf::new()
}