diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2017-11-22 21:16:38 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2017-11-22 21:16:38 +0100 |
commit | 269077f317c309bce943be308f140a1deba01ce9 (patch) | |
tree | ef7eb783dd1a84d5b3ca0604849dc47e82883303 /ports | |
parent | 663794fe2da640b260bc9433bf7f66f296e7032e (diff) | |
download | servo-269077f317c309bce943be308f140a1deba01ce9.tar.gz servo-269077f317c309bce943be308f140a1deba01ce9.zip |
stylo: Also tidy Servo_AnimationValue_DeepEqual while here.
Diffstat (limited to 'ports')
-rw-r--r-- | ports/geckolib/glue.rs | 8 |
1 files 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 |