Skip to content

Commit

Permalink
be 2.12.0-RC1 compatible
Browse files Browse the repository at this point in the history
reference: typelevel#1377
  • Loading branch information
SethTisue committed Sep 28, 2016
1 parent 48e91b4 commit 3f86943
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/scala/cats/Eval.scala
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ sealed abstract class Eval[+A] extends Serializable { self =>
case c: Eval.Compute[A] =>
new Eval.Compute[B] {
type Start = c.Start
val start = c.start
val run = (s: c.Start) =>
val start: () => Eval[Start] = c.start
val run: Start => Eval[B] = (s: c.Start) =>
new Eval.Compute[B] {
type Start = A
val start = () => c.run(s)
Expand Down

0 comments on commit 3f86943

Please sign in to comment.