Merge pull request #9216 from birarda/min-cores-comment

fix a confusing comment about min cores required
This commit is contained in:
Seth Alves 2016-12-15 06:55:26 -08:00 committed by GitHub
commit b11bfd405d

View file

@ -405,7 +405,7 @@ bool checkMinSpecImpl() {
return true;
}
// If we have at least 5 cores, pass
// If we have at least MIN_CORES_SPEC cores, pass
auto coreCount = QThread::idealThreadCount();
if (coreCount >= MIN_CORES_SPEC) {
return true;