lib/icu/Converter: Create() returns std::unique_ptr

This commit is contained in:
Max Kellermann
2019-11-04 15:44:06 +01:00
parent 496f43e25d
commit ed327c597a
6 changed files with 11 additions and 16 deletions

View File

@@ -32,7 +32,7 @@
void
IcyMetaDataParser::SetCharset(const char *charset)
{
icu_converter.reset(IcuConverter::Create(charset));
icu_converter = IcuConverter::Create(charset);
}
#endif