Enabled and fixed compiler warnings. (#92)

This commit is contained in:
Ravin Perera
2022-01-28 16:03:46 +05:30
committed by GitHub
parent 656fc8b662
commit 1a47e82e13
12 changed files with 53 additions and 35 deletions

View File

@@ -645,7 +645,7 @@ namespace msg::json
{
msg.reserve(1024);
msg += "[";
for (int i = 0; i < instances.size(); i++)
for (size_t i = 0; i < instances.size(); i++)
{
const hp::instance_info &instance = instances[i];
msg += "{\"";