summaryrefslogtreecommitdiff
path: root/include/fud_utf8_iterator.hpp
diff options
context:
space:
mode:
authorDominick Allen <djallen@librehumanitas.org>2024-10-02 11:42:00 -0500
committerDominick Allen <djallen@librehumanitas.org>2024-10-02 11:42:00 -0500
commit7eea7cd5e5b451de9db5bd289f8b5d152d5803f5 (patch)
treed4c948fc00f7c3c63fd9c6c8d85ac1c57c8241b5 /include/fud_utf8_iterator.hpp
parent132ddf65fe6e253ebd113036d61c51cd0eb5e827 (diff)
Separate string view, implement string appending semantics.
Diffstat (limited to 'include/fud_utf8_iterator.hpp')
-rw-r--r--include/fud_utf8_iterator.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fud_utf8_iterator.hpp b/include/fud_utf8_iterator.hpp
index 3721b00..ec35927 100644
--- a/include/fud_utf8_iterator.hpp
+++ b/include/fud_utf8_iterator.hpp
@@ -34,7 +34,7 @@ class Utf8Iterator {
// NOLINTEND(cppcoreguidelines-avoid-const-or-ref-data-members)
public:
- explicit constexpr Utf8Iterator(const String& fudString) : m_view{fudString}
+ explicit Utf8Iterator(const String& fudString) : m_view{fudString}
{
}