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 158eff1 + 70585b4 commit 256ec45Copy full SHA for 256ec45
include/swift/Frontend/ModuleInterfaceLoader.h
@@ -165,11 +165,11 @@ class ExplicitSwiftModuleLoader: public SerializedModuleLoaderBase {
165
/// Information about explicitly specified Swift module files.
166
struct ExplicitModuleInfo {
167
// Path of the .swiftmodule file.
168
- StringRef modulePath;
+ std::string modulePath;
169
// Path of the .swiftmoduledoc file.
170
- StringRef moduleDocPath;
+ std::string moduleDocPath;
171
// Path of the .swiftsourceinfo file.
172
- StringRef moduleSourceInfoPath;
+ std::string moduleSourceInfoPath;
173
// Opened buffer for the .swiftmodule file.
174
std::unique_ptr<llvm::MemoryBuffer> moduleBuffer;
175
};
0 commit comments