Skip to content

Commit 826c36e

Browse files
committed
[LLDB] Swift: Adjust calls to moved & renamed methods
Per 460c0f5.
1 parent 0ce4444 commit 826c36e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lldb/source/Host/macosx/objcxx/HostInfoMacOSXSwift.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -285,12 +285,12 @@ HostInfoMacOSX::GetSwiftResourceDir(llvm::Triple triple,
285285
if (it != g_resource_dir_cache.end())
286286
return it->getValue();
287287

288-
auto value = DetectSwiftResourceDir(
289-
platform_sdk_path, swift_stdlib_os_dir,
290-
HostInfo::GetSwiftResourceDir().GetPath(),
291-
HostInfo::GetXcodeContentsDirectory().GetPath(),
292-
PlatformDarwin::GetCurrentToolchainDirectory().GetPath(),
293-
PlatformDarwin::GetCurrentCommandLineToolsDirectory().GetPath());
288+
auto value =
289+
DetectSwiftResourceDir(platform_sdk_path, swift_stdlib_os_dir,
290+
HostInfo::GetSwiftResourceDir().GetPath(),
291+
HostInfo::GetXcodeContentsDirectory().GetPath(),
292+
GetCurrentXcodeToolchainDirectory().GetPath(),
293+
GetCurrentCommandLineToolsDirectory().GetPath());
294294
g_resource_dir_cache.insert({key, value});
295295
return g_resource_dir_cache[key];
296296
}

0 commit comments

Comments
 (0)