We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3ec155 commit 57b1430Copy full SHA for 57b1430
clang/lib/Index/IndexingAction.cpp
@@ -919,6 +919,10 @@ class ModuleFileIndexDependencyCollector : public IndexDependencyProvider {
919
// undesirable dependency on an intermediate build byproduct.
920
if (FE->getName().ends_with("module.modulemap"))
921
return;
922
+ // Ignore SDKSettings.json, they are not important to track for
923
+ // indexing.
924
+ if (FE->getName().ends_with("SDKSettings.json"))
925
+ return;
926
927
visitor(*FE, isSystem);
928
});
0 commit comments