mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Clarify reading inputs.
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user