summaryrefslogtreecommitdiffhomepage
path: root/include/unicode/utf.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2022-01-02 15:02:59 +0100
committerRoland Reichwein <mail@reichwein.it>2022-01-02 15:02:59 +0100
commitac045216d6e7fcb0ec4d2169ac2b6dffbe21707a (patch)
tree1403ee320ad364ca9f0e15e8f64cf2a864ef0b4a /include/unicode/utf.h
parentc969cddf87a2c6d2eb74353f3115a70d166136e5 (diff)
Remove dead code from optimizations
Diffstat (limited to 'include/unicode/utf.h')
-rw-r--r--include/unicode/utf.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/unicode/utf.h b/include/unicode/utf.h
index 81e8f2b..046d9c6 100644
--- a/include/unicode/utf.h
+++ b/include/unicode/utf.h
@@ -415,11 +415,6 @@ namespace unicode {
}
};
- // Encoding for convert()
- typedef UTF<utf_iterator<utf8_t>, utf_back_insert_iterator<utf8_t>> UTF_8;
- typedef UTF<utf_iterator<char16_t>, utf_back_insert_iterator<char16_t>> UTF_16;
- typedef UTF<utf_iterator<char32_t>, utf_back_insert_iterator<char32_t>> UTF_32;
-
// Helper to get correct Encoding from char type, e.g. Encoding<typename decltype(s)::value_type>::type or Encoding_t<typename decltype(s)::value_type>
template<typename T>
struct Encoding