Skip to content

Commit b87d834

Browse files
author
Oron Port
committed
fix minor issue
1 parent 4daee9a commit b87d834

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/main/scala/singleton/ops/OpIntercept.scala

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ import impl._
44

55
import scala.annotation.implicitNotFound
66

7-
trait OpIntercept[Op <: HasOut] extends HasOut
7+
trait OpIntercept[Op <: HasOut]
88
object OpIntercept {
9-
type Aux[Op <: HasOut, Out0] = OpIntercept[Op]{type Out = Out0}
10-
@implicitNotFound("Failed to cache op ${Op} with result ${Out}")
9+
@implicitNotFound("Failed to cache with result ${Out}")
1110
trait CacheResult[Out]
1211
object CacheResult {
1312
implicit def call[Out] : CacheResult[Out] = macro Macro.materializeCacheResult[Out]

0 commit comments

Comments
 (0)