Minor cleanup. NFC.

Swift SVN r20851
This commit is contained in:
Nadav Rotem
2014-07-31 21:22:17 +00:00
parent 0192838aca
commit 685bb84c15
2 changed files with 4 additions and 3 deletions

View File

@@ -55,7 +55,7 @@ public:
ClassList& getSubClasses(ClassDecl *C) { return SubclassesCache[C]; }
/// \returns True if the class is inherited by another class in this module.
bool inheritedInModule(ClassDecl *CD) {
bool hasKnownSubclasses(ClassDecl *CD) {
return SubclassesCache.count(CD);
}