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 828a3a9 commit 6a808d5Copy full SHA for 6a808d5
clang-tools-extra/clangd/index/IndexAction.cpp
@@ -103,10 +103,10 @@ struct IncludeGraphCollector : public PPCallbacks {
103
}
104
105
// Sanity check to ensure we have already populated a skipped file.
106
- void FileSkipped(const FileEntry &SkippedFile, const Token &FilenameTok,
+ void FileSkipped(const FileEntryRef &SkippedFile, const Token &FilenameTok,
107
SrcMgr::CharacteristicKind FileType) override {
108
#ifndef NDEBUG
109
- auto URI = toURI(&SkippedFile);
+ auto URI = toURI(&SkippedFile.getFileEntry());
110
if (!URI)
111
return;
112
auto I = IG.try_emplace(*URI);
0 commit comments