fix size_t with int comparison warning

This commit is contained in:
Benjamin Sergeant 2020-06-17 16:56:06 -07:00
parent 558daf8911
commit bf0f11fd65

View File

@ -70,7 +70,7 @@ namespace ix
std::atomic<bool>& fatalCobraError,
std::atomic<uint64_t>& sentCount) -> void {
std::string id;
int idx = 0;
size_t idx = 0;
for (auto&& attr : tokens)
{
auto val = extractAttr(attr, msg);