swift-module-digester: changing open class members to public can be source-breaking.

This commit is contained in:
Xi Ge
2018-09-27 14:38:59 -07:00
parent 0afafd1ca4
commit 6665b56e9d
8 changed files with 25 additions and 2 deletions

View File

@@ -690,7 +690,8 @@ bool SDKNode::operator==(const SDKNode &Other) const {
return false;
if (Left->getGenericSignature() != Right->getGenericSignature())
return false;
if (Left->isOpen() != Right->isOpen())
return false;
LLVM_FALLTHROUGH;
}
case SDKNodeKind::Root: {