Skip to content

Commit

Permalink
Fix compile error on 2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
fthomas committed Jul 26, 2016
1 parent e7be749 commit 3739646
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class RefineMacro(val c: blackbox.Context) extends MacroUtils {
def impl[F[_, _], T: c.WeakTypeTag, P: c.WeakTypeTag](t: c.Expr[T])(
rt: c.Expr[RefType[F]], v: c.Expr[Validate[T, P]]
): c.Expr[F[T, P]] =
refineImpl(t)(reify(api.RefinedType.instance(rt.splice, v.splice)))
refineImpl[F[T, P], T, P](t)(reify(api.RefinedType.instance(rt.splice, v.splice)))

@deprecated("", "")
def implApplyRef[FTP, F[_, _], T, P](t: c.Expr[T])(
Expand Down

0 comments on commit 3739646

Please sign in to comment.