summaryrefslogtreecommitdiff
path: root/src/utf8_iterator.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-10-30 13:57:46 +0000
committerMaxime Coste <frrrwww@gmail.com>2015-10-30 13:57:46 +0000
commit2bf44b6b49dc9bf52ee424da6decdd5c8fcae665 (patch)
treed1871e3eb04bfd4f154b09a466aadb1a8dfd1fe0 /src/utf8_iterator.hh
parent92c3aa4d31e07c6681c2267cbef6ebc069195ba2 (diff)
Make word insert completion work better with unicode char
Diffstat (limited to 'src/utf8_iterator.hh')
-rw-r--r--src/utf8_iterator.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utf8_iterator.hh b/src/utf8_iterator.hh
index b8ba5764..5980ea7c 100644
--- a/src/utf8_iterator.hh
+++ b/src/utf8_iterator.hh
@@ -25,7 +25,7 @@ public:
template<typename Container>
iterator(Iterator it, const Container& c)
- : m_it{std::move(it)}, m_begin{begin(c)}, m_end{end(c)}
+ : m_it{std::move(it)}, m_begin{std::begin(c)}, m_end{std::end(c)}
{}
iterator& operator++()