From b3dda18d23aed8379da4ca18e2d89dbcebe19d2c Mon Sep 17 00:00:00 2001 From: Vincenzo Eduardo Padulano Date: Sun, 22 Sep 2024 12:11:05 +0200 Subject: [PATCH] [tpython][NFC] Fix integer comparison warning --- bindings/tpython/test/testTPython.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/tpython/test/testTPython.cxx b/bindings/tpython/test/testTPython.cxx index 1f6360082ede9..4c0af642471b1 100644 --- a/bindings/tpython/test/testTPython.cxx +++ b/bindings/tpython/test/testTPython.cxx @@ -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(); }