Skip to content

Commit

Permalink
make Unapply serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
kailuowang committed Mar 1, 2016
1 parent ee9a6af commit e1787b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/cats/Unapply.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ package cats
* Functor for Map[A,?] for any A, and for Either[A,?] for any A,
* however the Scala compiler will not find them without some coercing.
*/
trait Unapply[TC[_[_]], MA] {
trait Unapply[TC[_[_]], MA] extends Serializable {
// a type constructor which is properly kinded for the type class
type M[_]
// the type applied to the type constructor to make an MA
Expand Down

0 comments on commit e1787b6

Please sign in to comment.