lib/icu/Converter: add TODO comment

This commit is contained in:
Max Kellermann 2014-11-30 19:08:30 +01:00
parent c641ca90a9
commit 0f35016773

View File

@ -51,6 +51,7 @@ IcuConverter::Create(const char *charset, Error &error)
static std::string
DoConvert(GIConv conv, const char *src)
{
// TODO: dynamic buffer?
char buffer[4096];
char *in = const_cast<char *>(src);
char *out = buffer;