Fix keeper data dumper build

This commit is contained in:
alesapin 2022-01-24 13:23:58 +03:00
parent 49793553ed
commit 8d2750a92a

View File

@ -37,9 +37,9 @@ void dumpMachine(std::shared_ptr<KeeperStateMachine> machine)
for (const auto & child : value.children)
{
if (key == "/")
keys.push(key + child);
keys.push(key + child.toString());
else
keys.push(key + "/" + child);
keys.push(key + "/" + child.toString());
}
}
std::cout << std::flush;