mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[AST] Rename isPrivateStdlibDecl -> isPrivateSystemDecl
This better reflects what we're actually checking here.
This commit is contained in:
@@ -1772,7 +1772,7 @@ SDKContext::shouldIgnore(Decl *D, const Decl* Parent) const {
|
||||
if (D->getAttrs().hasAttribute<AlwaysEmitIntoClientAttr>())
|
||||
return true;
|
||||
} else {
|
||||
if (D->isPrivateStdlibDecl(false))
|
||||
if (D->isPrivateSystemDecl(false))
|
||||
return true;
|
||||
}
|
||||
if (AvailableAttr::isUnavailable(D))
|
||||
|
||||
Reference in New Issue
Block a user