Skip to content

Nonchalantly add accidentally omitted curly braces. #2928

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2197,14 +2197,15 @@ lldb::TypeSystemSP SwiftASTContext::CreateInstance(lldb::LanguageType language,
// system. These modules must be imported from the
// SDK instead.
if (!StringRef(parent_path).startswith("/System/Library") &&
!IsDeviceSupport(parent_path.c_str()))
!IsDeviceSupport(parent_path.c_str())) {
LOG_PRINTF(LIBLLDB_LOG_TYPES,
"process_one_module(\"%s\") adding framework path "
"\"%s\".",
module_file.GetFilename().AsCString(""),
framework_path.c_str());
framework_search_paths.push_back(
{std::move(parent_path), /*system*/ false});
}
}
}
}
Expand Down