Ensure input is sorted.

This commit is contained in:
2018-03-24 18:03:24 +01:00
parent 6390a9ba1f
commit 34af03da90

View File

@@ -122,6 +122,8 @@ std::vector<std::string> Launcher::getInputFiles()
result.push_back(itr->path().string());
}
std::sort(result.begin(), result.end());
return result;
}