style: Mark trivial CalcLengthOrPercentage accessors as inline.

These were showing up all over profiles in layout.
This commit is contained in:
Patrick Walton 2015-12-14 13:19:17 -08:00
parent d11f96e270
commit eb3e93af0b

View file

@ -1518,10 +1518,12 @@ pub mod computed {
}
impl CalcLengthOrPercentage {
#[inline]
pub fn length(&self) -> Au {
self.length.unwrap_or(Au(0))
}
#[inline]
pub fn percentage(&self) -> CSSFloat {
self.percentage.unwrap_or(0.)
}