From 4f623dead3a944a546b54198496ba955c4233fda Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Fri, 20 May 2016 14:39:42 +0200 Subject: [PATCH] Remove unsafe Send implementation for GlutinCompositorProxy. Send is now implemented for glutin::WindowProxy. --- ports/glutin/window.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs index f09489f0093..25ce9970c5b 100644 --- a/ports/glutin/window.rs +++ b/ports/glutin/window.rs @@ -828,9 +828,6 @@ struct GlutinCompositorProxy { window_proxy: Option, } -// TODO: Should this be implemented here or upstream in glutin::WindowProxy? -unsafe impl Send for GlutinCompositorProxy {} - impl CompositorProxy for GlutinCompositorProxy { fn send(&self, msg: compositor_thread::Msg) { // Send a message and kick the OS event loop awake.