Skip to content

Commit

Permalink
Merge branch '1.29.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
ghik committed Sep 4, 2018
2 parents e78d8dd + 4617b5d commit c424ee6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -823,8 +823,10 @@ trait MacroCommons { bundle =>
case t => t
}

def isSealedHierarchyRoot(sym: Symbol): Boolean =
def isSealedHierarchyRoot(sym: Symbol): Boolean = {
sym.info // force loading of type information, sometimes it may be missing when loading from classfile
sym.isClass && sym.isAbstract && sym.asClass.isSealed
}

def knownNonAbstractSubclasses(sym: Symbol): Set[Symbol] =
sym.asClass.knownDirectSubclasses.flatMap { s =>
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "1.29.0"
version in ThisBuild := "1.29.1"

0 comments on commit c424ee6

Please sign in to comment.