fix build by using std::string cast
This commit is contained in:
parent
8f2a010ea7
commit
4f6ff6c2e7
@ -100,7 +100,7 @@ namespace bots
|
|||||||
const auto names = bots.GetArray();
|
const auto names = bots.GetArray();
|
||||||
for (const auto& name : names)
|
for (const auto& name : names)
|
||||||
{
|
{
|
||||||
bot_names.emplace_back(name.Get<std::string>());
|
bot_names.emplace_back(std::string(name.GetString()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user