aboutsummaryrefslogtreecommitdiff
path: root/src/include/fst/interval-set.h
diff options
context:
space:
mode:
authorPrzemyslaw Szczepaniak <pszczepaniak@google.com>2013-03-04 11:30:34 +0000
committerPrzemyslaw Szczepaniak <pszczepaniak@google.com>2013-03-04 11:30:34 +0000
commit5bf56ba7027cd5f22ff52d0138893f7a585135fb (patch)
tree19e17fc79b8873e66f211276d4dd169c480cede1 /src/include/fst/interval-set.h
parent3da1eb108d36da35333b2d655202791af854996b (diff)
parent5b6dc79427b8f7eeb6a7ff68034ab8548ce670ea (diff)
downloadopenfst-kitkat-mr2.1-release.tar.gz
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();