Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Commit

Permalink
Update for langugae changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdm committed Dec 23, 2012
1 parent 105bc09 commit 7d37d89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion values.rs
Expand Up @@ -385,7 +385,7 @@ impl<T: Eq> CSSValue<T> : Eq {
pure fn eq(&self, other: &CSSValue<T>) -> bool { pure fn eq(&self, other: &CSSValue<T>) -> bool {
match (self, other) { match (self, other) {
(&Inherit, &Inherit) => true, (&Inherit, &Inherit) => true,
(&Specified(a), &Specified(b)) => a == b, (&Specified(ref a), &Specified(ref b)) => a == b,
_ => false _ => false
} }
} }
Expand Down

0 comments on commit 7d37d89

Please sign in to comment.