From 19b8474c4a6fc25afdce87badda1001cf89f9528 Mon Sep 17 00:00:00 2001 From: Tomaka17 Date: Thu, 31 Jul 2014 20:56:56 +0200 Subject: [PATCH] Window is no longer NoSend --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 953864a7..83a75a44 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -53,7 +53,6 @@ pub struct MonitorID(winimpl::MonitorID); /// ``` pub struct Window { window: winimpl::Window, - nosend: std::kinds::marker::NoSend, } impl Window { @@ -94,7 +93,6 @@ impl Window { Ok(Window{ window: win, - nosend: std::kinds::marker::NoSend, }) }