Skip to content

Commit

Permalink
Make Bifunctor universal, fixes #887
Browse files Browse the repository at this point in the history
  • Loading branch information
adelbertc committed Mar 3, 2016
1 parent c292e7f commit 97644d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/cats/functor/Bifunctor.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package functor
* A type class of types which give rise to two independent, covariant
* functors.
*/
trait Bifunctor[F[_, _]] extends Serializable { self =>
trait Bifunctor[F[_, _]] extends Any with Serializable { self =>

/**
* The quintessential method of the Bifunctor trait, it applies a
Expand Down

0 comments on commit 97644d7

Please sign in to comment.