Skip to content

Commit 13b4356

Browse files
authored
Merge pull request #3808 from bnbarham/cherry-to-avoid-conflicts
[20211026][lldb] Avoid conflicts with next
2 parents 36fc1b5 + cdcefb5 commit 13b4356

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lldb/include/lldb/Symbol/TypeSystem.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@ class TypeSystem : public PluginInterface {
8282
static lldb::TypeSystemSP CreateInstance(lldb::LanguageType language,
8383
Target *target);
8484

85-
// BEGIN APPLE
85+
// BEGIN SWIFT
8686
static lldb::TypeSystemSP CreateInstance(lldb::LanguageType language,
8787
Target *target,
8888
const char *compiler_options);
89-
// END APPLE
89+
// END SWIFT
9090

9191
// Free up any resources associated with this TypeSystem. Done before
9292
// removing all the TypeSystems from the TypeSystemMap.

lldb/source/Symbol/TypeSystem.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,8 @@ TypeSystemMap::GetTypeSystemForLanguage(lldb::LanguageType language,
328328
const char *compiler_options) {
329329
if (can_create) {
330330
return GetTypeSystemForLanguage(
331-
language, llvm::Optional<CreateCallback>([language, target,
332-
compiler_options]() {
331+
language,
332+
llvm::Optional<CreateCallback>([language, target, compiler_options]() {
333333
return TypeSystem::CreateInstance(language, target, compiler_options);
334334
}));
335335
}

0 commit comments

Comments
 (0)