summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2013-01-17 18:47:53 +0100
committerMaxime Coste <frrrwww@gmail.com>2013-01-17 19:49:48 +0100
commit9c2bbe218b32d6ce44be976a7b14eb0908a102e0 (patch)
tree481f12e5a695863db7f47fb5c39f88eced97dc83 /src/input_handler.cc
parent44ca4d23de3508b668736ddad902afdb2a941e38 (diff)
replace char: fix unicode handling
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc
index ae14bdc0..dc9392c1 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -61,14 +61,6 @@ private:
int m_count = 0;
};
-String codepoint_to_str(Codepoint cp)
-{
- std::string str;
- auto it = back_inserter(str);
- utf8::dump(it, cp);
- return String(str);
-}
-
class LineEditor
{
public: