Skip to content

Commit 48637c6

Browse files
committed
[ASTGen] Fix a silly typo that caused a bogus protocol conformance list to be
passed to extension macro expansion on the plugin server code path.
1 parent b137c6c commit 48637c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ASTGen/Sources/ASTGen/Macros.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ func expandAttachedMacroIPC(
867867
}
868868

869869
let conformanceListSyntax: PluginMessage.Syntax?
870-
if (qualifiedType.isEmpty) {
870+
if (conformanceList.isEmpty) {
871871
conformanceListSyntax = nil
872872
} else {
873873
let placeholderDecl: DeclSyntax =

0 commit comments

Comments
 (0)