Enabled and fixed compiler warnings. (#359)

This commit is contained in:
Ravin Perera
2022-01-28 16:03:34 +05:30
committed by GitHub
parent cf695af30b
commit 5cef95c9f6
28 changed files with 132 additions and 102 deletions

View File

@@ -218,7 +218,7 @@ namespace msg::usrmsg::bson
encoder.key(msg::usrmsg::FLD_OUTPUTS);
encoder.begin_array();
for (int i = 0; i < outputs.size(); i++)
for (size_t i = 0; i < outputs.size(); i++)
encoder.byte_string_value(outputs[i]);
encoder.end_array();