adding missing type (#1791)

This commit is contained in:
Derek Pappas 2019-01-18 23:33:12 -08:00 committed by GitHub
parent fb5ac38480
commit b9b95f493a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,8 @@ trait OMRange extends OMCompoundType {
case class OMBitRange( case class OMBitRange(
base: BigInt, base: BigInt,
size: BigInt size: BigInt,
_types: Seq[String] = Seq("OMBitRange", "OMCompoundType")
) extends OMRange ) extends OMRange
case class OMAddressSet( case class OMAddressSet(
@ -172,4 +173,4 @@ object OMRegister {
makeRegisterMap(mapping) makeRegisterMap(mapping)
} }
} }