Skip to content

Commit

Permalink
Merge pull request #909 from adelbertc/binary-extends-any
Browse files Browse the repository at this point in the history
Make Bifunctor universal, fixes #887
  • Loading branch information
ceedubs committed Mar 8, 2016
2 parents ae7b531 + 97644d7 commit bdbc7e6
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 bdbc7e6

Please sign in to comment.