Commit 19f8f1c0 authored by Jamie Seward's avatar Jamie Seward

Add missing "u8"

This causes test-udt to crash due to bad iterator
parent 5ec44fe9
...@@ -201,7 +201,7 @@ void from_json(const BasicJsonType& j, country& c) ...@@ -201,7 +201,7 @@ void from_json(const BasicJsonType& j, country& c)
{ {
{u8"中华人民共和国", country::china}, {u8"中华人民共和国", country::china},
{"France", country::france}, {"France", country::france},
{"Российская Федерация", country::russia} {u8"Российская Федерация", country::russia}
}; };
const auto it = m.find(str); const auto it = m.find(str);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment