You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-haskell/top/files/top-1.7-ghc84.patch

13 lines
380 B

--- a/src/Top/Solver.hs
+++ b/src/Top/Solver.hs
@@ -26,2 +26,3 @@ import Top.Constraint.Information
import Control.Monad.Writer
+import qualified Data.Semigroup as S
@@ -170,2 +171,5 @@ evalBasicMonad = runWriter . flip evalStateFixT empty
+instance S.Semigroup LogEntries where
+ (<>) (LogEntries f) (LogEntries g) = LogEntries (f . g)
+
instance Monoid LogEntries where