We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 797765a + 05688cb commit a72679cCopy full SHA for a72679c
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