We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a024050 commit c5c0ff2Copy full SHA for c5c0ff2
macro/src/test/scala/com/github/bigwheel/thpy/MacroSpec.scala
@@ -10,7 +10,7 @@ class MacroSpec extends FunSpec with Matchers {
10
// Following code has type erasue problem then this Equality is not completed.
11
private[this] implicit val _ = new Equality[NamedParam.Typed[Int]] {
12
override def areEqual(lhs: NamedParam.Typed[Int], rhs: Any): Boolean = rhs match {
13
- case rhs2 : NamedParam.Typed[Int] @unchecked =>
+ case rhs2 : NamedParam.Typed[Int] =>
14
lhs.tpe == rhs2.tpe && lhs.name == rhs2.name && lhs.value == rhs2.value
15
case _ =>
16
false
project/plugins.sbt
@@ -1,3 +1 @@
1
logLevel := Level.Warn
2
-
3
-addSbtPlugin("com.artima.supersafe" % "sbtplugin" % "1.1.2")
0 commit comments