From 5574131876d8bbe73cfcd3b5ae8a1317b60142c0 Mon Sep 17 00:00:00 2001 From: Richard Lin Date: Thu, 21 Mar 2019 18:21:07 -0700 Subject: Remove @chiselName from MixedVec (#1045) --- src/main/scala/chisel3/util/MixedVec.scala | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/scala/chisel3/util/MixedVec.scala b/src/main/scala/chisel3/util/MixedVec.scala index 80e224d3..9b70cd41 100644 --- a/src/main/scala/chisel3/util/MixedVec.scala +++ b/src/main/scala/chisel3/util/MixedVec.scala @@ -4,7 +4,6 @@ package chisel3.util import chisel3._ import chisel3.core.{Data, requireIsChiselType, requireIsHardware} -import chisel3.internal.naming.chiselName import scala.collection.immutable.ListMap @@ -86,7 +85,6 @@ object MixedVec { * v(2) := 101.U(32.W) * }}} */ -@chiselName final class MixedVec[T <: Data](private val eltsIn: Seq[T]) extends Record with collection.IndexedSeq[T] { // We want to create MixedVec only with Chisel types. if (compileOptions.declaredTypeMustBeUnbound) { -- cgit v1.2.3