Clarify reading inputs.

This commit is contained in:
David Ungar
2017-12-06 15:22:25 -08:00
parent 28b206008f
commit 7176e1fc72

View File

@@ -134,7 +134,11 @@ public:
bool convert() {
if (enforceFilelistExclusion())
return true;
if (getFilesFromCommandLine() || getFilesFromFilelist())
bool hadError = getFilesFromCommandLine();
if (hadError)
return true;
hadError = getFilesFromFilelist();
if (hadError)
return true;
std::set<StringRef> PrimaryFiles = getPrimaries();