diff options
| author | Aditya Naik | 2024-06-03 09:44:01 -0700 |
|---|---|---|
| committer | Aditya Naik | 2024-06-03 09:44:01 -0700 |
| commit | a529d0e962cbe6a8f32dcc87d5193df46c0ebc94 (patch) | |
| tree | 1f0307c4a1f28bc93b789c3ef1fded7cc4f0e2bf /core/src/main/scala/chisel3/Module.scala | |
| parent | 9b61af16227ee41aae15dbcc2243e2c6493955c4 (diff) | |
Get core to compile
Diffstat (limited to 'core/src/main/scala/chisel3/Module.scala')
| -rw-r--r-- | core/src/main/scala/chisel3/Module.scala | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/main/scala/chisel3/Module.scala b/core/src/main/scala/chisel3/Module.scala index 2c9e8189..22dbcc6f 100644 --- a/core/src/main/scala/chisel3/Module.scala +++ b/core/src/main/scala/chisel3/Module.scala @@ -73,7 +73,7 @@ object Module { if (Builder.currentModule.isDefined && module._component.isDefined) { val component = module._component.get pushCommand(DefInstance(module, component.ports)) - module.initializeInParent + module.initializeInParent() } module } @@ -173,7 +173,7 @@ abstract class Module extends RawModule { private[chisel3] override def initializeInParent(): Unit = { - super.initializeInParent + super.initializeInParent() clock := _override_clock.getOrElse(Builder.forcedClock) reset := _override_reset.getOrElse(Builder.forcedReset) } @@ -255,7 +255,7 @@ package experimental { /** Sets up this module in the parent context */ - private[chisel3] def initializeInParent: Unit + private[chisel3] def initializeInParent(): Unit // // Chisel Internals @@ -335,7 +335,7 @@ package experimental { * * Helper method. */ - protected def nameIds(rootClass: Class[_]): HashMap[HasId, String] = { + protected def nameIds(rootClass: Class[?]): HashMap[HasId, String] = { val names = new HashMap[HasId, String]() def name(node: HasId, name: String) = { |
