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 387e8d3 + 7c64093 commit b2bc7a0Copy full SHA for b2bc7a0
include/swift/AST/SearchPathOptions.h
@@ -372,10 +372,10 @@ class SearchPathOptions {
372
FrameworkSearchPaths.size() - 1);
373
}
374
375
- std::optional<StringRef> WinSDKRoot = std::nullopt;
376
- std::optional<StringRef> WinSDKVersion = std::nullopt;
377
- std::optional<StringRef> VCToolsRoot = std::nullopt;
378
- std::optional<StringRef> VCToolsVersion = std::nullopt;
+ std::optional<std::string> WinSDKRoot = std::nullopt;
+ std::optional<std::string> WinSDKVersion = std::nullopt;
+ std::optional<std::string> VCToolsRoot = std::nullopt;
+ std::optional<std::string> VCToolsVersion = std::nullopt;
379
380
public:
381
StringRef getSDKPath() const { return SDKPath; }
0 commit comments