From 43fca53547606127f1e489b1b308681dd636626a Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Tue, 15 Aug 2023 08:59:48 -0400 Subject: [PATCH] [Test] Fix unused variable warning --- test/zeroD/test_zeroD.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/zeroD/test_zeroD.cpp b/test/zeroD/test_zeroD.cpp index 2be649b88..25ac0aaf8 100644 --- a/test/zeroD/test_zeroD.cpp +++ b/test/zeroD/test_zeroD.cpp @@ -27,12 +27,10 @@ TEST(zerodim, simple) network.initialize(); double t = 0.0; - int count = 0; while (t < 0.1) { ASSERT_GE(cppReactor.temperature(), T); t = network.time() + 5e-3; network.advance(t); - count++; } }