diff --git a/src/gl_context.rs b/src/gl_context.rs index 3613f9c9..a4d81b30 100644 --- a/src/gl_context.rs +++ b/src/gl_context.rs @@ -26,7 +26,8 @@ pub struct GLContext { } impl GLContext - where Native: NativeGLContextMethods { + where Native: NativeGLContextMethods +{ pub fn create(shared_with: Option<&Native::Handle>) -> Result, &'static str> { let native_context = try!(Native::create_shared(shared_with)); try!(native_context.make_current());