Rustfmt has changed its default style :/

This commit is contained in:
Simon Sapin 2018-12-14 08:31:30 +01:00
parent 82fc6d9f49
commit be69f9c3e6
207 changed files with 1200 additions and 1339 deletions

View file

@ -277,8 +277,8 @@ pub unsafe extern "C" fn move_servo(servo: *mut ServoInstance, x: f32, y: f32) {
ScrollState::TriggerDown(start)
if (start - point).square_length() < DRAG_CUTOFF_SQUARED =>
{
return
},
return;
}
ScrollState::TriggerDown(start) => (
ScrollState::TriggerDragging(start, point),
vec![

View file

@ -22,11 +22,7 @@ pub mod egl {
pub type EGLNativeWindowType = *const libc::c_void;
#[cfg(target_os = "android")]
pub type EGLNativeWindowType = *const libc::c_void;
#[cfg(any(
target_os = "dragonfly",
target_os = "freebsd",
target_os = "openbsd"
))]
#[cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))]
pub type EGLNativeWindowType = *const libc::c_void;
pub type khronos_utime_nanoseconds_t = khronos_uint64_t;
@ -81,11 +77,7 @@ pub mod egl {
}
}
#[cfg(any(
target_os = "windows",
target_os = "linux",
target_os = "macos"
))]
#[cfg(any(target_os = "windows", target_os = "linux", target_os = "macos"))]
pub mod gl {
pub fn init() -> Result<crate::gl_glue::ServoGl, &'static str> {
// FIXME: Add an OpenGL version

View file

@ -105,11 +105,7 @@ pub extern "C" fn init_with_egl(
init(opts, gl, wakeup, readfile, callbacks)
}
#[cfg(any(
target_os = "linux",
target_os = "windows",
target_os = "macos"
))]
#[cfg(any(target_os = "linux", target_os = "windows", target_os = "macos"))]
#[no_mangle]
pub extern "C" fn init_with_gl(
opts: CInitOptions,