iocell won't run without this syntax

IntelliJ flags this as error, even though it compiles and runs
This commit is contained in:
chick
2021-08-09 09:47:20 -07:00
parent c907a7377c
commit db2739bb6c

View File

@@ -148,7 +148,7 @@ object IOCell {
padSignal: T,
name: Option[String] = None,
typeParams: IOCellTypeParams = GenericIOCellParams(),
concretizeResetFn: (Reset) => R = toSyncReset _
concretizeResetFn: (Reset) => R = toSyncReset
): Seq[IOCell] = {
def genCell[T <: Data](
castToBool: (T) => Bool,