Window is no longer NoSend

This commit is contained in:
Tomaka17 2014-07-31 20:56:56 +02:00
parent 14c59e8d81
commit 19b8474c4a

View file

@ -53,7 +53,6 @@ pub struct MonitorID(winimpl::MonitorID);
/// ``` /// ```
pub struct Window { pub struct Window {
window: winimpl::Window, window: winimpl::Window,
nosend: std::kinds::marker::NoSend,
} }
impl Window { impl Window {
@ -94,7 +93,6 @@ impl Window {
Ok(Window{ Ok(Window{
window: win, window: win,
nosend: std::kinds::marker::NoSend,
}) })
} }