diff options
| author | Jack Koenig | 2018-02-20 11:21:59 -0800 |
|---|---|---|
| committer | GitHub | 2018-02-20 11:21:59 -0800 |
| commit | 853a88bc6ffeb37ac26de6c893cf6509bb1c7ca1 (patch) | |
| tree | ed5a04f62ad50234a70ef6055666fbf604419509 /chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala | |
| parent | 7f6f1cee2da468fb657d40c14d0a583696cc7105 (diff) | |
Make Bundle abstract (#774)
Diffstat (limited to 'chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala')
| -rw-r--r-- | chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala b/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala index 4b35c163..1f592f38 100644 --- a/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala +++ b/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala @@ -508,7 +508,7 @@ class AutoClonetypeException(message: String) extends ChiselException(message, n * } * }}} */ -class Bundle(implicit compileOptions: CompileOptions) extends Record { +abstract class Bundle(implicit compileOptions: CompileOptions) extends Record { override def className = "Bundle" /** The collection of [[Data]] |
