snoyberg / mono-traversable

Type classes for mapping, folding, and traversing monomorphic containers
153 stars 64 forks source link

Remove INLINE pragma without method binding #79

Closed RyanGlScott closed 9 years ago

RyanGlScott commented 9 years ago

There is an {-# INLINE ofoldMap #-} pragma without a method binding in the MonoFoldable (Vector a) instance that was giving the warning makeCorePair: arity missing $cofoldMap_aduS. After Trac #5001 was fixed, however, this would result in an error. To avoid this, I simply removed the pragma, as it doesn't do anything.

snoyberg commented 9 years ago

Thanks!