summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorEdward Wang2018-07-12 15:23:10 -0700
committeredwardcwang2018-08-22 11:55:38 -0700
commit3679e80c72e67c7c1b09a8f3f5315bc4d3e8d9ab (patch)
treed4834bdb5ed22dec1a7af883e88f85d344690c4c /src/main
parentf803eb8d8b7ef447d80710f94912f683c7a03771 (diff)
Remove redundant := method
Diffstat (limited to 'src/main')
-rw-r--r--src/main/scala/chisel3/util/MixedVec.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main/scala/chisel3/util/MixedVec.scala b/src/main/scala/chisel3/util/MixedVec.scala
index cd3a1115..e09cdc4a 100644
--- a/src/main/scala/chisel3/util/MixedVec.scala
+++ b/src/main/scala/chisel3/util/MixedVec.scala
@@ -101,16 +101,6 @@ final class MixedVec[T <: Data](private val eltsIn: Seq[T]) extends Record with
a := b
}
- /** Strong bulk connect, assigning elements in this MixedVec from elements in a Vec.
- *
- * @note the lengths of this and that must match
- */
- def :=(that: Vec[T]): Unit = {
- require(this.length == that.length)
- for ((a, b) <- this zip that)
- a := b
- }
-
/**
* Get the length of this MixedVec.
* @return Number of elements in this MixedVec.