Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions lib/ClangImporter/ImportDecl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5881,6 +5881,8 @@ namespace {

result->setMemberLoader(&Impl, 0);

Impl.swiftifyProtocol(result);

return result;
}

Expand Down
1 change: 1 addition & 0 deletions lib/ClangImporter/ImporterImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -1827,6 +1827,7 @@ class LLVM_LIBRARY_VISIBILITY ClangImporter::Implementation
void addOptionSetTypealiases(NominalTypeDecl *nominal);

void swiftify(AbstractFunctionDecl *MappedDecl);
void swiftifyProtocol(NominalTypeDecl *MappedDecl);

/// Find the lookup table that corresponds to the given Clang module.
///
Expand Down
Loading