mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-08 06:32:35 +02:00
Fixed gcc warning.
This commit is contained in:
parent
bb0d4a66b6
commit
235996911a
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue