From: jpbernardy Date: Sat, 3 Dec 2005 17:32:01 +0000 (+0000) Subject: [project @ 2005-12-03 17:32:01 by jpbernardy] X-Git-Tag: Initial_conversion_from_CVS_complete~11 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=440b0edceec1eb681bd24ab8d109c19441a39cb7;p=haskell-directory.git [project @ 2005-12-03 17:32:01 by jpbernardy] Removed spurious constraint for Monoid (IntMap a) instance --- diff --git a/Data/IntMap.hs b/Data/IntMap.hs index 1be0bbe..4c5246c 100644 --- a/Data/IntMap.hs +++ b/Data/IntMap.hs @@ -212,7 +212,7 @@ type Prefix = Int type Mask = Int type Key = Int -instance Ord a => Monoid (IntMap a) where +instance Monoid (IntMap a) where mempty = empty mappend = union mconcat = unions