1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-03 00:46:55 +02:00

code review

This commit is contained in:
Laserlicht
2024-12-05 23:31:03 +01:00
parent 1fb5301750
commit 4b103fd63b
4 changed files with 21 additions and 12 deletions

View File

@ -86,6 +86,11 @@ JsonNode::JsonNode(const std::string & string)
{
}
JsonNode::JsonNode(const JsonMap & map)
: data(map)
{
}
JsonNode::JsonNode(const std::byte * data, size_t datasize, const std::string & fileName)
: JsonNode(data, datasize, JsonParsingSettings(), fileName)
{