aboutsummaryrefslogtreecommitdiff
path: root/src/include/fst/interval-set.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/fst/interval-set.h')
-rw-r--r--src/include/fst/interval-set.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/fst/interval-set.h b/src/include/fst/interval-set.h
index cf6ac54..c4362f2 100644
--- a/src/include/fst/interval-set.h
+++ b/src/include/fst/interval-set.h
@@ -81,12 +81,12 @@ class IntervalSet {
const vector<Interval> *Intervals() const { return &intervals_; }
- const bool Empty() const { return intervals_.empty(); }
+ bool Empty() const { return intervals_.empty(); }
- const T Size() const { return intervals_.size(); }
+ T Size() const { return intervals_.size(); }
// Number of points in the intervals (undefined if not normalized).
- const T Count() const { return count_; }
+ T Count() const { return count_; }
void Clear() {
intervals_.clear();