summaryrefslogtreecommitdiff
path: root/src/utf8_iterator.hh
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2018-11-02 08:23:39 +1100
committerMaxime Coste <mawww@kakoune.org>2018-11-02 08:23:39 +1100
commitee74c2c2df925bf54c79bd2e3665cd08150ff4ca (patch)
treef7f53fceaeb3cdba01cfdc2102b40dd53f3abd60 /src/utf8_iterator.hh
parent6fce8050ee29c97a96ff97823698d539b7c734d0 (diff)
Use custom code instead of reverse_iterator in Regex VM
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 0467c30e..4dd9ffd0 100644
--- a/src/utf8_iterator.hh
+++ b/src/utf8_iterator.hh
@@ -133,7 +133,7 @@ public:
return (CodepointType)utf8::read_codepoint<InvalidPolicy>(m_it, m_end);
}
- const BaseIt& base() const noexcept(noexcept_policy) { return m_it; }
+ const BaseIt& base() const noexcept { return m_it; }
private:
BaseIt m_it;