summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPeng Wu <alexepico@gmail.com>2016-02-29 15:54:20 +0800
committerPeng Wu <alexepico@gmail.com>2016-02-29 15:54:20 +0800
commit6f785fe6118aff18ea596c095ce67e513de88471 (patch)
tree9c922dbfbab5edb8f3a4777d6eb856d7bf6fba47 /src
parentb3fb0481719dfdbbf2cf7a692a831a87d2416419 (diff)
fixes a typo
Diffstat (limited to 'src')
-rw-r--r--src/storage/chewing_large_table2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/storage/chewing_large_table2.h b/src/storage/chewing_large_table2.h
index b6c9c35..963008d 100644
--- a/src/storage/chewing_large_table2.h
+++ b/src/storage/chewing_large_table2.h
@@ -112,11 +112,11 @@ public:
const IndexItem * begin = (IndexItem *) m_chunk.begin();
const IndexItem * end = (IndexItem *) m_chunk.end();
- std_lite::pair<const IndexItem *, const IndexItem *> range=
+ std_lite::pair<const IndexItem *, const IndexItem *> range =
std_lite::equal_range(begin, end, m_cache_item,
phrase_less_than_with_tones<phrase_length>);
- return convert(keys, range.m_first, range.m_second, ranges);
+ return convert(keys, range.first, range.second, ranges);
}
/* add/remove index method */