diff options
| author | Inari Listenmaa <inari.listenmaa@gmail.com> | 2025-08-02 18:59:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-02 18:59:07 +0200 |
| commit | 65e85c5a3cba4df82547a018b4135ac63551d8df (patch) | |
| tree | 33a842b24b9e3851c6b6cf095f11f562b0fd6b7f /src/runtime/haskell/Data/Binary/Builder.hs | |
| parent | 981d6b9bddacee6a204ac48f2a4e27f4cca1bd47 (diff) | |
| parent | 01c4f82e077b93cb2318830c56070c0ec15a20e6 (diff) | |
Merge pull request #175 from inariksit/new-ghc
Changes to make it work with newer stack/GHC:
- unix library changed API in 2.8
- Monad of no return & Semigroup as a superclass of Monoid
- import Control.Monad (join, when, (<=<))
- fixed CI issues
Diffstat (limited to 'src/runtime/haskell/Data/Binary/Builder.hs')
| -rw-r--r-- | src/runtime/haskell/Data/Binary/Builder.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/haskell/Data/Binary/Builder.hs b/src/runtime/haskell/Data/Binary/Builder.hs index 8dc46f816..e22fa4a4c 100644 --- a/src/runtime/haskell/Data/Binary/Builder.hs +++ b/src/runtime/haskell/Data/Binary/Builder.hs @@ -114,7 +114,7 @@ instance Semigroup Builder where instance Monoid Builder where mempty = empty {-# INLINE mempty #-} - mappend = append + mappend = (<>) {-# INLINE mappend #-} ------------------------------------------------------------------------ |
