We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35b7642 commit f02f5b2Copy full SHA for f02f5b2
lib/SIL/IR/SILSymbolVisitor.cpp
@@ -238,6 +238,9 @@ class SILSymbolVisitorImpl : public ASTVisitor<SILSymbolVisitorImpl> {
238
void addConformances(const IterableDeclContext *IDC) {
239
for (auto conformance :
240
IDC->getLocalConformances(ConformanceLookupKind::NonInherited)) {
241
+ if (conformance->getSourceKind() == ConformanceEntryKind::PreMacroExpansion)
242
+ continue;
243
+
244
auto protocol = conformance->getProtocol();
245
if (Ctx.getOpts().PublicSymbolsOnly &&
246
getDeclLinkage(protocol) != FormalLinkage::PublicUnique)
0 commit comments