Add missing "u8"

This causes test-udt to crash due to bad iterator
This commit is contained in:
Jamie Seward 2017-10-16 00:21:38 -07:00
parent 5ec44fe9e3
commit 19f8f1c075

View file

@ -201,7 +201,7 @@ void from_json(const BasicJsonType& j, country& c)
{
{u8"中华人民共和国", country::china},
{"France", country::france},
{"Российская Федерация", country::russia}
{u8"Российская Федерация", country::russia}
};
const auto it = m.find(str);