Skip to content

Commit

Permalink
[tpython][NFC] Fix integer comparison warning
Browse files Browse the repository at this point in the history
  • Loading branch information
vepadulano committed Sep 22, 2024
1 parent e271825 commit b3dda18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/tpython/test/testTPython.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ TEST(TPython, ExecMultithreading)
threads.emplace_back(task1, i);
}

for (int i = 0; i < threads.size(); i++) {
for (decltype(threads.size()) i = 0; i < threads.size(); i++) {
threads[i].join();
}

Expand Down

0 comments on commit b3dda18

Please sign in to comment.