diff options
| author | Aditya Naik | 2024-06-03 09:44:01 -0700 |
|---|---|---|
| committer | Aditya Naik | 2024-06-03 09:44:01 -0700 |
| commit | a529d0e962cbe6a8f32dcc87d5193df46c0ebc94 (patch) | |
| tree | 1f0307c4a1f28bc93b789c3ef1fded7cc4f0e2bf /core/src/main/scala/chisel3/Printable.scala | |
| parent | 9b61af16227ee41aae15dbcc2243e2c6493955c4 (diff) | |
Get core to compile
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 = { |
