Skip to content

Commit

Permalink
Bump to scala 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryz123 authored and sequencer committed Feb 1, 2023
1 parent f2e2c92 commit 850e121
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion design/craft/inclusivecache/src/InclusiveCache.scala
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ class InclusiveCache(
concurrency = 1, // Only one flush at a time (else need to track who answers)
beatBytes = c.beatBytes)}

lazy val module = new LazyModuleImp(this) {
lazy val module = new Impl
class Impl extends LazyModuleImp(this) {

// If you have a control port, you must have at least one cache port
require (!ctlnode.isDefined || !node.edges.in.isEmpty)
Expand Down

0 comments on commit 850e121

Please sign in to comment.