1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-28 10:44:26 +01:00

Merge pull request #34 from hoodja/master

Unknown CLI params get ignored
This commit is contained in:
Mark VanderVoord
2014-02-28 16:42:35 -05:00
3 changed files with 21 additions and 0 deletions

View File

@@ -351,6 +351,9 @@ int UnityGetCommandLineOptions(int argc, char* argv[])
i++;
}
}
} else {
// ignore unknown parameter
i++;
}
}
return 0;