mirror of
https://github.com/rust-windowing/winit.git
synced 2026-09-01 22:30:04 -04:00
Window is no longer NoSend
This commit is contained in:
@@ -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,
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user