add missing Ord constraint (fixes android build)
Probably the new ghc used on android is the root cause of needing this constraint.
This commit is contained in:
parent
83c58f17e0
commit
f3e457a195
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ dropDead f content trustmap = case getLogVariety f of
|
|||
Just OtherLog -> PreserveFile
|
||||
Nothing -> PreserveFile
|
||||
|
||||
dropDeadFromMapLog :: TrustMap -> (k -> UUID) -> M.Map k v -> M.Map k v
|
||||
dropDeadFromMapLog :: Ord k => TrustMap -> (k -> UUID) -> M.Map k v -> M.Map k v
|
||||
dropDeadFromMapLog trustmap getuuid = M.filterWithKey $ \k _v -> notDead trustmap getuuid k
|
||||
|
||||
{- Presence logs can contain UUIDs or other values. Any line that matches
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue