From 235996911a64002c94448a8f3f0d46295ee91cfe Mon Sep 17 00:00:00 2001 From: NissimHadar Date: Wed, 4 Apr 2018 11:38:14 -0700 Subject: [PATCH] Fixed gcc warning. --- tools/auto-tester/src/Test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/auto-tester/src/Test.cpp b/tools/auto-tester/src/Test.cpp index 98d4ae463c..0bbd35e280 100644 --- a/tools/auto-tester/src/Test.cpp +++ b/tools/auto-tester/src/Test.cpp @@ -638,7 +638,7 @@ void Test::createMDFile() { stream << "Press space bar to advance step by step\n\n"; int snapShotIndex { 0 }; - for (int i = 0; i < testScriptLines.stepList.size(); ++i) { + for (size_t i = 0; i < testScriptLines.stepList.size(); ++i) { stream << "### Step " << QString::number(i) << "\n"; stream << "- " << testScriptLines.stepList[i]->text << "\n"; if (testScriptLines.stepList[i]->takeSnapshot) {