diff options
Diffstat (limited to 'core/src/main/scala/chisel3/Printable.scala')
| -rw-r--r-- | core/src/main/scala/chisel3/Printable.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/chisel3/Printable.scala b/core/src/main/scala/chisel3/Printable.scala index 82054ee1..4afe2498 100644 --- a/core/src/main/scala/chisel3/Printable.scala +++ b/core/src/main/scala/chisel3/Printable.scala @@ -132,7 +132,7 @@ object Printable { // The literal \ needs to be escaped before sending to the custom cf interpolator. val bufEscapeBackSlash = buf.map(_.replace("\\", "\\\\")) - StringContext(bufEscapeBackSlash.toSeq: _*).cf(data: _*) + StringContext(bufEscapeBackSlash.toSeq*).cf(data*) } private[chisel3] def checkScope(message: Printable): Unit = { |
