aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/util/range.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/util/range.rs')
-rw-r--r--src/components/util/range.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/util/range.rs b/src/components/util/range.rs
index 94c3e783df1..8940b6a952a 100644
--- a/src/components/util/range.rs
+++ b/src/components/util/range.rs
@@ -6,7 +6,7 @@ use std::cmp::{max, min};
use std::iter;
use std::fmt;
-enum RangeRelation {
+pub enum RangeRelation {
OverlapsBegin(/* overlap */ uint),
OverlapsEnd(/* overlap */ uint),
ContainedBy,