Add missing "u8"
This causes test-udt to crash due to bad iterator
This commit is contained in:
parent
5ec44fe9e3
commit
19f8f1c075
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue