Code changes after analyzer

This commit is contained in:
stephb9959
2022-03-25 13:46:29 -07:00
parent e3a3450238
commit e4bac7b747

View File

@@ -131,6 +131,11 @@ namespace OpenWifi {
for(const auto &j:i) {
Poco::JSON::Object O;
j.to_json(O);
std::ostringstream OO;
O.stringify(OO);
std::cout << OO.str() << std::endl;
InnerArray.add(O);
}
Outer.add(InnerArray);