Commit 680b2bfb authored by Jim Lawson's avatar Jim Lawson
Browse files

Fix bug introduced by defining asBool

```
[error] .../chisel3/src/main/scala/chisel3/util/ImplicitConversions.scala:16:50: type mismatch;
[error]  found   : x.type (with underlying type Boolean)
[error]  required: ?{def asBool: ?}
[error] Note that implicit conversions are not applicable because they are ambiguous:
[error]  both method fromBooleanToLiteral in package chisel3 of type (x: Boolean)chisel3.package.fromBooleanToLiteral
[error]  and method booleanToBool in object ImplicitConversions of type (x: Boolean)chisel3.Bool
[error]  are possible conversion functions from x.type to ?{def asBool: ?}
[error]   implicit def booleanToBool(x: Boolean): Bool = x.asBool
```
parent 4b81c3fa
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment