Skip to content

Commit

Permalink
Use the correct macro implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
fthomas committed Jul 14, 2015
1 parent ff96c45 commit c1f08e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import scala.reflect.macros.blackbox
* `[[refineM]][P](t)`.
*/
final class RefineM[P] {
def apply[T](t: T)(implicit p: Predicate[P, T]): Refined[T, P] = macro RefineLit.macroImpl[P, T]
def apply[T](t: T)(implicit p: Predicate[P, T]): Refined[T, P] = macro RefineM.macroImpl[P, T]
}

object RefineM {
Expand Down

0 comments on commit c1f08e3

Please sign in to comment.