summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
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.