From 269077f317c309bce943be308f140a1deba01ce9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Wed, 22 Nov 2017 21:16:38 +0100 Subject: [PATCH] stylo: Also tidy Servo_AnimationValue_DeepEqual while here. --- ports/geckolib/glue.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ports/geckolib/glue.rs b/ports/geckolib/glue.rs index f16214c6df5..e485e02e6e5 100644 --- a/ports/geckolib/glue.rs +++ b/ports/geckolib/glue.rs @@ -763,10 +763,10 @@ pub extern "C" fn Servo_AnimationValue_Transform( } #[no_mangle] -pub extern "C" fn Servo_AnimationValue_DeepEqual(this: RawServoAnimationValueBorrowed, - other: RawServoAnimationValueBorrowed) - -> bool -{ +pub extern "C" fn Servo_AnimationValue_DeepEqual( + this: RawServoAnimationValueBorrowed, + other: RawServoAnimationValueBorrowed, +) -> bool { let this_value = AnimationValue::as_arc(&this); let other_value = AnimationValue::as_arc(&other); this_value == other_value