Skip to content

Commit 150c625

Browse files
committed
IsMissing should be true, not false; NFC
This is an NFC change because that parameter is unused by the DependencyCollector currently; there's no way to test for the change.
1 parent e89037e commit 150c625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Frontend/DependencyFile.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ struct DepCollectorPPCallbacks : public PPCallbacks {
8181
/*FromModule*/ false,
8282
/*IsSystem*/ false,
8383
/*IsModuleFile*/ false,
84-
/*IsMissing*/ false);
84+
/*IsMissing*/ true);
8585
// Return true to silence the file not found diagnostic.
8686
return true;
8787
}

0 commit comments

Comments
 (0)