Skip to content

Commit

Permalink
apply hlint suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
clayrat committed Jun 17, 2024
1 parent 83b3cbf commit b4b417b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Language/Fixpoint/Types/Visitor.hs
Original file line number Diff line number Diff line change
Expand Up @@ -470,9 +470,9 @@ instance SymConsts Rewrite where
instance (SymConsts (c a)) => SymConsts (GInfo c a) where
symConsts fi = Misc.sortNub $ csLits ++ bsLits ++ qsLits
where
csLits = concatMap symConsts $ M.elems $ cm fi
bsLits = symConsts $ bs fi
qsLits = concatMap symConsts $ qBody <$> quals fi
csLits = concatMap symConsts $ M.elems $ cm fi
bsLits = symConsts $ bs fi
qsLits = concatMap (symConsts . qBody) $ quals fi

instance SymConsts (BindEnv a) where
symConsts = concatMap (symConsts . Misc.snd3) . M.elems . beBinds
Expand Down

0 comments on commit b4b417b

Please sign in to comment.