Skip to content

Commit

Permalink
fix size_t int warning
Browse files Browse the repository at this point in the history
  • Loading branch information
huitema committed Sep 4, 2024
1 parent f35fbc3 commit a7cbf58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ComputeM34.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ bool ComputeM3::GetM33_2()
bool ret = true;
GetM3_X(REGISTRY_DNS_LeakedTLD, &m33_2, 0.001);

for (int i = 0; i < m33_2.size(); i++) {
for (size_t i = 0; i < m33_2.size(); i++) {
if (strcmp(m33_2[i].domain, "ARPA") == 0) {
m33_2.erase(m33_2.begin() + i);
break;
Expand Down

0 comments on commit a7cbf58

Please sign in to comment.