aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/StringUtil.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/common/StringUtil.cpp b/src/common/StringUtil.cpp
index 54adebd9..36f4df4e 100644
--- a/src/common/StringUtil.cpp
+++ b/src/common/StringUtil.cpp
@@ -153,9 +153,6 @@ CodePoint Utf16PreviousCodePoint(std::u16string_view str, Index current,
return result;
}
-template class CodePointIterator<std::string_view, &Utf8NextCodePoint>;
-template class CodePointIterator<std::u16string_view, &Utf16NextCodePoint>;
-
void Utf8EncodeCodePointAppend(CodePoint code_point, std::string& str) {
auto write_continue_byte = [&str](std::uint8_t byte6) {
str.push_back((1u << 7) + (((1u << 6) - 1) & byte6));