summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Lawson2016-09-02 17:07:32 -0700
committerJim Lawson2016-09-02 17:07:32 -0700
commit3451ac840b3008597a6905c21d0e77ed613d5dbd (patch)
tree3ad470decab2d344ae9a06d656497e8d6f7bc28e
parent85a65019641130949fcc9082e42231a7c3618f0a (diff)
Rename implicit compileOptions to defaultCompileOptions.
-rw-r--r--src/main/scala/chisel3/compatibility.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/chisel3/compatibility.scala b/src/main/scala/chisel3/compatibility.scala
index 85311ba2..49b8bb2c 100644
--- a/src/main/scala/chisel3/compatibility.scala
+++ b/src/main/scala/chisel3/compatibility.scala
@@ -4,7 +4,7 @@
// moving to the more standard package naming convention chisel3 (lowercase c).
package object Chisel { // scalastyle:ignore package.object.name
- implicit val compileOptions = chisel3.NotStrict.CompileOptions
+ implicit val defaultCompileOptions = chisel3.NotStrict.CompileOptions
type Direction = chisel3.core.Direction
val INPUT = chisel3.core.Direction.Input
val OUTPUT = chisel3.core.Direction.Output