aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/geometry.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/util/geometry.rs')
-rw-r--r--components/util/geometry.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/components/util/geometry.rs b/components/util/geometry.rs
index 50fb1a634f6..bc18ce66b8b 100644
--- a/components/util/geometry.rs
+++ b/components/util/geometry.rs
@@ -134,10 +134,6 @@ impl Neg<Au> for Au {
}
}
-#[inline]
-pub fn min(x: Au, y: Au) -> Au { if x < y { x } else { y } }
-#[inline]
-pub fn max(x: Au, y: Au) -> Au { if x > y { x } else { y } }
impl NumCast for Au {
#[inline]