stylo: Also tidy Servo_AnimationValue_DeepEqual while here.

This commit is contained in:
Emilio Cobos Álvarez 2017-11-22 21:16:38 +01:00
parent 663794fe2d
commit 269077f317
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -763,10 +763,10 @@ pub extern "C" fn Servo_AnimationValue_Transform(
} }
#[no_mangle] #[no_mangle]
pub extern "C" fn Servo_AnimationValue_DeepEqual(this: RawServoAnimationValueBorrowed, pub extern "C" fn Servo_AnimationValue_DeepEqual(
other: RawServoAnimationValueBorrowed) this: RawServoAnimationValueBorrowed,
-> bool other: RawServoAnimationValueBorrowed,
{ ) -> bool {
let this_value = AnimationValue::as_arc(&this); let this_value = AnimationValue::as_arc(&this);
let other_value = AnimationValue::as_arc(&other); let other_value = AnimationValue::as_arc(&other);
this_value == other_value this_value == other_value