summaryrefslogtreecommitdiff
path: root/core/src/main
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-11-03 23:49:09 -0700
committerLi Haoyi <haoyi.sg@gmail.com>2017-11-03 23:49:09 -0700
commit4ca07a0d1e151a4507dd312ee3ee25ac4320fb1c (patch)
tree427e698c124c84371706851b35c59d151fce4a9c /core/src/main
parent13270145903b457c906a9fa77bd152afb6448ef5 (diff)
downloadmill-4ca07a0d1e151a4507dd312ee3ee25ac4320fb1c.tar.gz
mill-4ca07a0d1e151a4507dd312ee3ee25ac4320fb1c.tar.bz2
mill-4ca07a0d1e151a4507dd312ee3ee25ac4320fb1c.zip
`Target#apply[T](t: => Target[T])` doesn't need to be implicit
Diffstat (limited to 'core/src/main')
-rw-r--r--core/src/main/scala/forge/Target.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/forge/Target.scala b/core/src/main/scala/forge/Target.scala
index 0e84a9b4..c1790960 100644
--- a/core/src/main/scala/forge/Target.scala
+++ b/core/src/main/scala/forge/Target.scala
@@ -42,7 +42,7 @@ object Target{
lazy val inputs = t0.inputs
def evaluate(args: Args) = t0.evaluate(args)
}
- implicit def apply[T](t: => Target[T]): Target[T] = new Target1(t)
+ def apply[T](t: => Target[T]): Target[T] = new Target1(t)
def apply[T](t: T): Target[T] = macro impl[T]
def impl[T: c.WeakTypeTag](c: Context)(t: c.Expr[T]): c.Expr[Target[T]] = {
import c.universe._