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.
2 parents 8ae66ec + 057c8bb commit c018f3eCopy full SHA for c018f3e
lib/Basic/BlockList.cpp
@@ -19,7 +19,7 @@
19
#include "swift/Basic/SourceManager.h"
20
21
struct swift::BlockListStore::Implementation {
22
- SourceManager &SM;
+ SourceManager SM;
23
llvm::StringMap<std::vector<BlockListAction>> ModuleActionDict;
24
llvm::StringMap<std::vector<BlockListAction>> ProjectActionDict;
25
void addConfigureFilePath(StringRef path);
@@ -45,7 +45,7 @@ struct swift::BlockListStore::Implementation {
45
return std::string();
46
}
47
48
- Implementation(SourceManager &SM) : SM(SM) {}
+ Implementation(SourceManager &SM) : SM(SM.getFileSystem()) {}
49
};
50
51
swift::BlockListStore::BlockListStore(swift::SourceManager &SM)
0 commit comments